diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
new file mode 100644
index 0000000..697cfe8
--- /dev/null
+++ b/.github/workflows/android.yml
@@ -0,0 +1,61 @@
+name: "Android: build & test"
+
+on: [push, pull_request]
+
+jobs:
+ build_and_test:
+ name: Build & test
+ runs-on: macos-latest
+ timeout-minutes: 30
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v1
+ with:
+ fetch-depth: 1
+
+ - name: Node
+ uses: actions/setup-node@v1
+
+ - name: Use specific Java version for sdkmanager to work
+ uses: joschi/setup-jdk@v1
+ with:
+ java-version: 'openjdk8'
+ architecture: 'x64'
+
+ - name: Download Android Emulator Image
+ run: |
+ echo "y" | $ANDROID_HOME/tools/bin/sdkmanager --install "system-images;android-29;google_apis;x86"
+ echo "no" | $ANDROID_HOME/tools/bin/avdmanager create avd --force --name emu --device "Nexus 5X" -k 'system-images;android-29;google_apis;x86'
+ $ANDROID_HOME/emulator/emulator -list-avds
+
+ - name: Install npm dependencies
+ working-directory: ./examples/detox
+ run: |
+ yarn install --frozen-lockfile
+
+ - name: Build
+ working-directory: ./examples/detox
+ run: |
+ yarn build:android-ci
+
+ - name: Start android emulator
+ working-directory: ./examples/detox
+ continue-on-error: true
+ run: |
+ echo "Starting emulator"
+ nohup $ANDROID_HOME/emulator/emulator -avd emu -no-audio -no-snapshot -no-window &
+ $ANDROID_HOME/platform-tools/adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed | tr -d '\r') ]]; do sleep 1; done; input keyevent 82'
+ $ANDROID_HOME/platform-tools/adb devices
+ echo "Emulator started"
+
+ - name: Run tests
+ working-directory: ./examples/detox
+ run: yarn start & yarn test:android-ci
+
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v1
+ if: failure()
+ with:
+ name: Failing tests
+ path: ./examples/detox/artifacts
diff --git a/examples/cocoapods/.watchmanconfig b/.watchmanconfig
similarity index 100%
rename from examples/cocoapods/.watchmanconfig
rename to .watchmanconfig
diff --git a/README.md b/README.md
index 7aa4ac4..1c51332 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,5 @@
-# React Native Date Picker [](https://www.npmjs.com/package/react-native-date-picker) [](https://www.npmjs.com/package/react-native-date-picker)
+# React Native Date Picker [](https://www.npmjs.com/package/react-native-date-picker) [](https://github.com/henninghall/react-native-date-picker/actions) [](https://www.npmjs.com/package/react-native-date-picker)
-
This is a React Native Date Picker with following main features:
@@ -13,10 +8,6 @@ This is a React Native Date Picker with following main features:
🌍 Multiple languages
🎨 Customizable
-
-
iOS |
diff --git a/android/build.gradle b/android/build.gradle
index abe1003..26e7f33 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -25,7 +25,7 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.facebook.react:react-native:+'
- implementation 'com.henninghall.android:NumberPickerView:1.1.1'
- implementation 'org.apache.commons:commons-lang3:3.6'
+ implementation 'com.henninghall.android:NumberPickerView:1.1.2'
+ implementation 'org.apache.commons:commons-lang3:3.7'
implementation group: 'net.time4j', name: 'time4j-android', version: '4.2-2018i'
}
diff --git a/android/src/main/java/com/henninghall/date_picker/DatePickerManager.java b/android/src/main/java/com/henninghall/date_picker/DatePickerManager.java
index ece4bcd..f15bd7f 100644
--- a/android/src/main/java/com/henninghall/date_picker/DatePickerManager.java
+++ b/android/src/main/java/com/henninghall/date_picker/DatePickerManager.java
@@ -1,9 +1,6 @@
package com.henninghall.date_picker;
-import android.content.res.Resources;
-import android.util.Log;
-import android.util.TypedValue;
-
+import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.common.MapBuilder;
import com.facebook.react.uimanager.SimpleViewManager;
import com.facebook.react.uimanager.ThemedReactContext;
@@ -19,6 +16,8 @@ import java.util.TimeZone;
public class DatePickerManager extends SimpleViewManager {
public static final String REACT_CLASS = "DatePickerManager";
+ private static final int SCROLL = 1;
+
public static ThemedReactContext context;
private String date;
@@ -92,6 +91,21 @@ public class DatePickerManager extends SimpleViewManager {
if(index == 0) view.style.setHeight(style);
}
+ @Override
+ public Map getCommandsMap() {
+ return MapBuilder.of(
+ "scroll", SCROLL
+ );
+ }
+
+ public void receiveCommand(final PickerView view, int command, final ReadableArray args) {
+ if (command == SCROLL) {
+ int wheelIndex = args.getInt(0);
+ int scrollTimes = args.getInt(1);
+ view.scroll(wheelIndex, scrollTimes);
+ }
+ }
+
@Override
protected void onAfterUpdateTransaction(PickerView view) {
super.onAfterUpdateTransaction(view);
diff --git a/android/src/main/java/com/henninghall/date_picker/PickerView.java b/android/src/main/java/com/henninghall/date_picker/PickerView.java
index 32b9e20..7321e3d 100644
--- a/android/src/main/java/com/henninghall/date_picker/PickerView.java
+++ b/android/src/main/java/com/henninghall/date_picker/PickerView.java
@@ -23,7 +23,6 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collection;
-import java.util.Date;
import java.util.List;
import java.util.Locale;
import java.util.TimeZone;
@@ -130,7 +129,7 @@ public class PickerView extends RelativeLayout {
}
// Rounding cal to closest minute interval
- public Calendar getInitialDate() {
+ public Calendar getInitialDate() {
Calendar cal = Calendar.getInstance();
if(minuteInterval <= 1) return cal;
int exactMinute = Integer.valueOf(minutesWheel.format.format(cal.getTime()));
@@ -232,4 +231,15 @@ public class PickerView extends RelativeLayout {
return new SimpleDateFormat(getFormatPattern(), locale);
}
+ public void scroll(int wheelIndex, int scrollTimes) {
+ NumberPickerView picker = wheelOrder.getVisibleWheel(wheelIndex).picker;
+ int currentIndex = picker.getValue();
+ int maxValue = picker.getMaxValue();
+ boolean isWrapping = picker.getWrapSelectorWheel();
+ int nextValue = currentIndex + scrollTimes;
+ if(nextValue <= maxValue || isWrapping) {
+ picker.smoothScrollToValue(nextValue % (maxValue + 1));
+ }
+
+ }
}
diff --git a/android/src/main/java/com/henninghall/date_picker/Style.java b/android/src/main/java/com/henninghall/date_picker/Style.java
index 7d3a02f..89a9000 100644
--- a/android/src/main/java/com/henninghall/date_picker/Style.java
+++ b/android/src/main/java/com/henninghall/date_picker/Style.java
@@ -2,8 +2,6 @@ package com.henninghall.date_picker;
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
-import android.view.View;
-import android.view.ViewGroup;
import android.widget.ImageView;
import com.henninghall.date_picker.wheelFunctions.SetShowCount;
import com.henninghall.date_picker.wheelFunctions.TextColor;
diff --git a/android/src/main/java/com/henninghall/date_picker/WheelOrder.java b/android/src/main/java/com/henninghall/date_picker/WheelOrder.java
index 29de3e1..fdf24a2 100644
--- a/android/src/main/java/com/henninghall/date_picker/WheelOrder.java
+++ b/android/src/main/java/com/henninghall/date_picker/WheelOrder.java
@@ -27,7 +27,7 @@ public class WheelOrder
}};
}
- private void updateValueWheels(final Locale locale) {
+ private void updateAllWheels(final Locale locale) {
try {
this.orderedWheels = getOrderedWheels(locale);
pickerView.wheelsWrapper.removeAllViews();
@@ -45,7 +45,7 @@ public class WheelOrder
void update(final Locale locale) {
- updateValueWheels(locale);
+ updateAllWheels(locale);
pickerView.emptyWheelUpdater.update();
}
diff --git a/android/src/main/res/layout/datepicker_view.xml b/android/src/main/res/layout/datepicker_view.xml
index 0d088d8..558068b 100644
--- a/android/src/main/res/layout/datepicker_view.xml
+++ b/android/src/main/res/layout/datepicker_view.xml
@@ -29,6 +29,7 @@
/>
/\.buckd/
-
-; Ignore unexpected extra "@providesModule"
-.*/node_modules/.*/node_modules/fbjs/.*
-
-; Ignore duplicate module providers
-; For RN Apps installed via npm, "Libraries" folder is inside
-; "node_modules/react-native" but in the source repo it is in the root
-node_modules/react-native/Libraries/react-native/React.js
-
-; Ignore polyfills
-node_modules/react-native/Libraries/polyfills/.*
-
-; These should not be required directly
-; require from fbjs/lib instead: require('fbjs/lib/warning')
-node_modules/warning/.*
-
-; Flow doesn't support platforms
-.*/Libraries/Utilities/HMRLoadingView.js
-
-[untyped]
-.*/node_modules/@react-native-community/cli/.*/.*
-
-[include]
-
-[libs]
-node_modules/react-native/Libraries/react-native/react-native-interface.js
-node_modules/react-native/flow/
-
-[options]
-emoji=true
-
-esproposal.optional_chaining=enable
-esproposal.nullish_coalescing=enable
-
-module.file_ext=.js
-module.file_ext=.json
-module.file_ext=.ios.js
-
-module.system=haste
-module.system.haste.use_name_reducers=true
-# get basename
-module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
-# strip .js or .js.flow suffix
-module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
-# strip .ios suffix
-module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
-module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
-module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
-module.system.haste.paths.blacklist=.*/__tests__/.*
-module.system.haste.paths.blacklist=.*/__mocks__/.*
-module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.*
-module.system.haste.paths.whitelist=/node_modules/react-native/RNTester/.*
-module.system.haste.paths.whitelist=/node_modules/react-native/IntegrationTests/.*
-module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/react-native/react-native-implementation.js
-module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.*
-
-munge_underscores=true
-
-module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
-
-suppress_type=$FlowIssue
-suppress_type=$FlowFixMe
-suppress_type=$FlowFixMeProps
-suppress_type=$FlowFixMeState
-
-suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)
-suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+
-suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
-
-[lints]
-sketchy-null-number=warn
-sketchy-null-mixed=warn
-sketchy-number=warn
-untyped-type-import=warn
-nonstrict-import=warn
-deprecated-type=warn
-unsafe-getters-setters=warn
-inexact-spread=warn
-unnecessary-invariant=warn
-signature-verification-failure=warn
-deprecated-utility=error
-
-[strict]
-deprecated-type
-nonstrict-import
-sketchy-null
-unclear-type
-unsafe-getters-setters
-untyped-import
-untyped-type-import
-
-[version]
-^0.98.0
diff --git a/examples/advanced/.gitattributes b/examples/advanced/.gitattributes
deleted file mode 100644
index d42ff18..0000000
--- a/examples/advanced/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-*.pbxproj -text
diff --git a/examples/advanced/.gitignore b/examples/advanced/.gitignore
deleted file mode 100644
index 57b00df..0000000
--- a/examples/advanced/.gitignore
+++ /dev/null
@@ -1,58 +0,0 @@
-# OSX
-#
-.DS_Store
-
-# Xcode
-#
-build/
-*.pbxuser
-!default.pbxuser
-*.mode1v3
-!default.mode1v3
-*.mode2v3
-!default.mode2v3
-*.perspectivev3
-!default.perspectivev3
-xcuserdata
-*.xccheckout
-*.moved-aside
-DerivedData
-*.hmap
-*.ipa
-*.xcuserstate
-project.xcworkspace
-
-# Android/IntelliJ
-#
-build/
-.idea
-.gradle
-local.properties
-*.iml
-
-# node.js
-#
-node_modules/
-npm-debug.log
-yarn-error.log
-
-# BUCK
-buck-out/
-\.buckd/
-
-# fastlane
-#
-# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
-# screenshots whenever they are needed.
-# For more information about the recommended setup visit:
-# https://docs.fastlane.tools/best-practices/source-control/
-
-*/fastlane/report.xml
-*/fastlane/Preview.html
-*/fastlane/screenshots
-
-# Bundle artifact
-*.jsbundle
-
-# CocoaPods
-/ios/Pods/
diff --git a/examples/advanced/.watchmanconfig b/examples/advanced/.watchmanconfig
deleted file mode 100644
index d92d987..0000000
--- a/examples/advanced/.watchmanconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "ignore_dirs": [
- ".git",
- "node_modules"
- ]
-}
diff --git a/examples/advanced/__tests__/App-test.js b/examples/advanced/__tests__/App-test.js
deleted file mode 100644
index 351e770..0000000
--- a/examples/advanced/__tests__/App-test.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * @format
- */
-
-import 'react-native'
-import React from 'react'
-import App from '../App'
-
-// Note: test renderer must be required after react-native.
-import renderer from 'react-test-renderer'
-
-it('renders correctly', () => {
- renderer.create()
-})
diff --git a/examples/advanced/android/app/BUCK b/examples/advanced/android/app/BUCK
deleted file mode 100644
index 625c94f..0000000
--- a/examples/advanced/android/app/BUCK
+++ /dev/null
@@ -1,55 +0,0 @@
-# To learn about Buck see [Docs](https://buckbuild.com/).
-# To run your application with Buck:
-# - install Buck
-# - `npm start` - to start the packager
-# - `cd android`
-# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
-# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
-# - `buck install -r android/app` - compile, install and run application
-#
-
-load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
-
-lib_deps = []
-
-create_aar_targets(glob(["libs/*.aar"]))
-
-create_jar_targets(glob(["libs/*.jar"]))
-
-android_library(
- name = "all-libs",
- exported_deps = lib_deps,
-)
-
-android_library(
- name = "app-code",
- srcs = glob([
- "src/main/java/**/*.java",
- ]),
- deps = [
- ":all-libs",
- ":build_config",
- ":res",
- ],
-)
-
-android_build_config(
- name = "build_config",
- package = "com.rn602",
-)
-
-android_resource(
- name = "res",
- package = "com.rn602",
- res = "src/main/res",
-)
-
-android_binary(
- name = "app",
- keystore = "//android/keystores:debug",
- manifest = "src/main/AndroidManifest.xml",
- package_type = "debug",
- deps = [
- ":app-code",
- ],
-)
diff --git a/examples/advanced/android/app/build.gradle b/examples/advanced/android/app/build.gradle
deleted file mode 100644
index ed6dd9d..0000000
--- a/examples/advanced/android/app/build.gradle
+++ /dev/null
@@ -1,210 +0,0 @@
-apply plugin: "com.android.application"
-
-import com.android.build.OutputFile
-
-/**
- * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
- * and bundleReleaseJsAndAssets).
- * These basically call `react-native bundle` with the correct arguments during the Android build
- * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
- * bundle directly from the development server. Below you can see all the possible configurations
- * and their defaults. If you decide to add a configuration block, make sure to add it before the
- * `apply from: "../../node_modules/react-native/react.gradle"` line.
- *
- * project.ext.react = [
- * // the name of the generated asset file containing your JS bundle
- * bundleAssetName: "index.android.bundle",
- *
- * // the entry file for bundle generation
- * entryFile: "index.android.js",
- *
- * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
- * bundleCommand: "ram-bundle",
- *
- * // whether to bundle JS and assets in debug mode
- * bundleInDebug: false,
- *
- * // whether to bundle JS and assets in release mode
- * bundleInRelease: true,
- *
- * // whether to bundle JS and assets in another build variant (if configured).
- * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
- * // The configuration property can be in the following formats
- * // 'bundleIn${productFlavor}${buildType}'
- * // 'bundleIn${buildType}'
- * // bundleInFreeDebug: true,
- * // bundleInPaidRelease: true,
- * // bundleInBeta: true,
- *
- * // whether to disable dev mode in custom build variants (by default only disabled in release)
- * // for example: to disable dev mode in the staging build type (if configured)
- * devDisabledInStaging: true,
- * // The configuration property can be in the following formats
- * // 'devDisabledIn${productFlavor}${buildType}'
- * // 'devDisabledIn${buildType}'
- *
- * // the root of your project, i.e. where "package.json" lives
- * root: "../../",
- *
- * // where to put the JS bundle asset in debug mode
- * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
- *
- * // where to put the JS bundle asset in release mode
- * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in debug mode
- * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in release mode
- * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
- *
- * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
- * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
- * // date; if you have any other folders that you want to ignore for performance reasons (gradle
- * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
- * // for example, you might want to remove it from here.
- * inputExcludes: ["android/**", "ios/**"],
- *
- * // override which node gets called and with what additional arguments
- * nodeExecutableAndArgs: ["node"],
- *
- * // supply additional arguments to the packager
- * extraPackagerArgs: []
- * ]
- */
-
-project.ext.react = [
- entryFile: "index.js",
- enableHermes: false, // clean and rebuild if changing
-]
-
-apply from: "../../node_modules/react-native/react.gradle"
-
-/**
- * Set this to true to create two separate APKs instead of one:
- * - An APK that only works on ARM devices
- * - An APK that only works on x86 devices
- * The advantage is the size of the APK is reduced by about 4MB.
- * Upload all the APKs to the Play Store and people will download
- * the correct one based on the CPU architecture of their device.
- */
-def enableSeparateBuildPerCPUArchitecture = false
-
-/**
- * Run Proguard to shrink the Java bytecode in release builds.
- */
-def enableProguardInReleaseBuilds = false
-
-/**
- * The preferred build flavor of JavaScriptCore.
- *
- * For example, to use the international variant, you can use:
- * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
- *
- * The international variant includes ICU i18n library and necessary data
- * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
- * give correct results when using with locales other than en-US. Note that
- * this variant is about 6MiB larger per architecture than default.
- */
-def jscFlavor = 'org.webkit:android-jsc:+'
-
-/**
- * Whether to enable the Hermes VM.
- *
- * This should be set on project.ext.react and mirrored here. If it is not set
- * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
- * and the benefits of using Hermes will therefore be sharply reduced.
- */
-def enableHermes = project.ext.react.get("enableHermes", false);
-
-android {
- compileSdkVersion rootProject.ext.compileSdkVersion
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
-
- defaultConfig {
- applicationId "com.rn602"
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- }
- splits {
- abi {
- reset()
- enable enableSeparateBuildPerCPUArchitecture
- universalApk false // If true, also generate a universal APK
- include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
- }
- }
- signingConfigs {
- debug {
- storeFile file('debug.keystore')
- storePassword 'android'
- keyAlias 'androiddebugkey'
- keyPassword 'android'
- }
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.debug
- }
- release {
- // Caution! In production, you need to generate your own keystore file.
- // see https://facebook.github.io/react-native/docs/signed-apk-android.
- signingConfig signingConfigs.debug
- minifyEnabled enableProguardInReleaseBuilds
- proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
- }
- }
- // applicationVariants are e.g. debug, release
- applicationVariants.all { variant ->
- variant.outputs.each { output ->
- // For each separate APK per architecture, set a unique version code as described here:
- // https://developer.android.com/studio/build/configure-apk-splits.html
- def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
- def abi = output.getFilter(OutputFile.ABI)
- if (abi != null) { // null for the universal-debug, universal-release variants
- output.versionCodeOverride =
- versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
- }
-
- }
- }
-
- packagingOptions {
- pickFirst '**/armeabi-v7a/libc++_shared.so'
- pickFirst '**/x86/libc++_shared.so'
- pickFirst '**/arm64-v8a/libc++_shared.so'
- pickFirst '**/x86_64/libc++_shared.so'
- pickFirst '**/x86/libjsc.so'
- pickFirst '**/armeabi-v7a/libjsc.so'
- }
-}
-
-dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation "com.facebook.react:react-native:+" // From node_modules
-
- if (enableHermes) {
- def hermesPath = "../../node_modules/hermesvm/android/";
- debugImplementation files(hermesPath + "hermes-debug.aar")
- releaseImplementation files(hermesPath + "hermes-release.aar")
- } else {
- implementation jscFlavor
- }
-}
-
-// Run this once to be able to run the application with BUCK
-// puts all compile dependencies into folder libs for BUCK to use
-task copyDownloadableDepsToLibs(type: Copy) {
- from configurations.compile
- into 'libs'
-}
-
-apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
diff --git a/examples/advanced/android/app/build_defs.bzl b/examples/advanced/android/app/build_defs.bzl
deleted file mode 100644
index fff270f..0000000
--- a/examples/advanced/android/app/build_defs.bzl
+++ /dev/null
@@ -1,19 +0,0 @@
-"""Helper definitions to glob .aar and .jar targets"""
-
-def create_aar_targets(aarfiles):
- for aarfile in aarfiles:
- name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
- lib_deps.append(":" + name)
- android_prebuilt_aar(
- name = name,
- aar = aarfile,
- )
-
-def create_jar_targets(jarfiles):
- for jarfile in jarfiles:
- name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
- lib_deps.append(":" + name)
- prebuilt_jar(
- name = name,
- binary_jar = jarfile,
- )
diff --git a/examples/advanced/android/app/debug.keystore b/examples/advanced/android/app/debug.keystore
deleted file mode 100644
index 364e105..0000000
Binary files a/examples/advanced/android/app/debug.keystore and /dev/null differ
diff --git a/examples/advanced/android/app/proguard-rules.pro b/examples/advanced/android/app/proguard-rules.pro
deleted file mode 100644
index 11b0257..0000000
--- a/examples/advanced/android/app/proguard-rules.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the proguardFiles
-# directive in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
diff --git a/examples/advanced/android/app/src/debug/AndroidManifest.xml b/examples/advanced/android/app/src/debug/AndroidManifest.xml
deleted file mode 100644
index fa26aa5..0000000
--- a/examples/advanced/android/app/src/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
diff --git a/examples/advanced/android/app/src/main/AndroidManifest.xml b/examples/advanced/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 859bc3a..0000000
--- a/examples/advanced/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/advanced/android/app/src/main/java/com/rn602/MainActivity.java b/examples/advanced/android/app/src/main/java/com/rn602/MainActivity.java
deleted file mode 100644
index 7d2bf06..0000000
--- a/examples/advanced/android/app/src/main/java/com/rn602/MainActivity.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.rn602;
-
-import com.facebook.react.ReactActivity;
-
-public class MainActivity extends ReactActivity {
-
- /**
- * Returns the name of the main component registered from JavaScript.
- * This is used to schedule rendering of the component.
- */
- @Override
- protected String getMainComponentName() {
- return "rn602";
- }
-}
diff --git a/examples/advanced/android/app/src/main/java/com/rn602/MainApplication.java b/examples/advanced/android/app/src/main/java/com/rn602/MainApplication.java
deleted file mode 100644
index 2c86694..0000000
--- a/examples/advanced/android/app/src/main/java/com/rn602/MainApplication.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.rn602;
-
-import android.app.Application;
-import android.util.Log;
-
-import com.facebook.react.PackageList;
-import com.facebook.hermes.reactexecutor.HermesExecutorFactory;
-import com.facebook.react.bridge.JavaScriptExecutorFactory;
-import com.facebook.react.ReactApplication;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.soloader.SoLoader;
-
-import java.util.List;
-
-public class MainApplication extends Application implements ReactApplication {
-
- private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
-
- @Override
- protected List getPackages() {
- @SuppressWarnings("UnnecessaryLocalVariable")
- List packages = new PackageList(this).getPackages();
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // packages.add(new MyReactNativePackage());
- return packages;
- }
-
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
- };
-
- @Override
- public ReactNativeHost getReactNativeHost() {
- return mReactNativeHost;
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
- SoLoader.init(this, /* native exopackage */ false);
- }
-}
diff --git a/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index a2f5908..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index 1b52399..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ff10afd..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index 115a4c7..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index dcd3cd8..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 459ca60..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 8ca12fe..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index 8e19b41..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b824ebd..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index 4c19a13..0000000
Binary files a/examples/advanced/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/advanced/android/app/src/main/res/values/strings.xml b/examples/advanced/android/app/src/main/res/values/strings.xml
deleted file mode 100644
index 44e2e6c..0000000
--- a/examples/advanced/android/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- rn602
-
diff --git a/examples/advanced/android/app/src/main/res/values/styles.xml b/examples/advanced/android/app/src/main/res/values/styles.xml
deleted file mode 100644
index 62fe59f..0000000
--- a/examples/advanced/android/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
diff --git a/examples/advanced/android/build.gradle b/examples/advanced/android/build.gradle
deleted file mode 100644
index e7732fe..0000000
--- a/examples/advanced/android/build.gradle
+++ /dev/null
@@ -1,38 +0,0 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
- ext {
- buildToolsVersion = "28.0.3"
- minSdkVersion = 16
- compileSdkVersion = 28
- targetSdkVersion = 28
- supportLibVersion = "28.0.0"
- }
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath("com.android.tools.build:gradle:3.4.1")
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- mavenLocal()
- maven {
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
- url("$rootDir/../node_modules/react-native/android")
- }
- maven {
- // Android JSC is installed from npm
- url("$rootDir/../node_modules/jsc-android/dist")
- }
-
- google()
- jcenter()
- }
-}
diff --git a/examples/advanced/android/gradle.properties b/examples/advanced/android/gradle.properties
deleted file mode 100644
index 027ef9d..0000000
--- a/examples/advanced/android/gradle.properties
+++ /dev/null
@@ -1,21 +0,0 @@
-# Project-wide Gradle settings.
-
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-# Default value: -Xmx10248m -XX:MaxPermSize=256m
-# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
-
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
-
-android.useAndroidX=true
-android.enableJetifier=true
diff --git a/examples/advanced/android/gradle/wrapper/gradle-wrapper.jar b/examples/advanced/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 5c2d1cf..0000000
Binary files a/examples/advanced/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/examples/advanced/android/gradle/wrapper/gradle-wrapper.properties b/examples/advanced/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index ee69dd6..0000000
--- a/examples/advanced/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
diff --git a/examples/advanced/android/gradlew b/examples/advanced/android/gradlew
deleted file mode 100755
index b0d6d0a..0000000
--- a/examples/advanced/android/gradlew
+++ /dev/null
@@ -1,188 +0,0 @@
-#!/usr/bin/env sh
-
-#
-# Copyright 2015 the original author or authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=$((i+1))
- done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-fi
-
-exec "$JAVACMD" "$@"
diff --git a/examples/advanced/android/gradlew.bat b/examples/advanced/android/gradlew.bat
deleted file mode 100644
index 15e1ee3..0000000
--- a/examples/advanced/android/gradlew.bat
+++ /dev/null
@@ -1,100 +0,0 @@
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem http://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/examples/advanced/android/keystores/BUCK b/examples/advanced/android/keystores/BUCK
deleted file mode 100644
index 88e4c31..0000000
--- a/examples/advanced/android/keystores/BUCK
+++ /dev/null
@@ -1,8 +0,0 @@
-keystore(
- name = "debug",
- properties = "debug.keystore.properties",
- store = "debug.keystore",
- visibility = [
- "PUBLIC",
- ],
-)
diff --git a/examples/advanced/android/keystores/debug.keystore.properties b/examples/advanced/android/keystores/debug.keystore.properties
deleted file mode 100644
index 121bfb4..0000000
--- a/examples/advanced/android/keystores/debug.keystore.properties
+++ /dev/null
@@ -1,4 +0,0 @@
-key.store=debug.keystore
-key.alias=androiddebugkey
-key.store.password=android
-key.alias.password=android
diff --git a/examples/advanced/android/settings.gradle b/examples/advanced/android/settings.gradle
deleted file mode 100644
index 7a42109..0000000
--- a/examples/advanced/android/settings.gradle
+++ /dev/null
@@ -1,4 +0,0 @@
-rootProject.name = 'rn602'
-apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
-project(':react-native-date-picker').projectDir = new File(rootProject.projectDir, '../../../android')
-include ':app'
diff --git a/examples/advanced/app.json b/examples/advanced/app.json
deleted file mode 100644
index d491706..0000000
--- a/examples/advanced/app.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "rn602",
- "displayName": "DatePicker"
-}
diff --git a/examples/advanced/babel.config.js b/examples/advanced/babel.config.js
deleted file mode 100644
index cf1f9fb..0000000
--- a/examples/advanced/babel.config.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- presets: ['module:metro-react-native-babel-preset'],
-}
diff --git a/examples/advanced/index.android.js b/examples/advanced/index.android.js
deleted file mode 100644
index 5c5c0c5..0000000
--- a/examples/advanced/index.android.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { AppRegistry } from 'react-native'
-import App from './src/App'
-import { name as appName } from './app.json'
-
-AppRegistry.registerComponent(appName, () => App)
diff --git a/examples/advanced/index.js b/examples/advanced/index.js
deleted file mode 100644
index 5c5c0c5..0000000
--- a/examples/advanced/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import { AppRegistry } from 'react-native'
-import App from './src/App'
-import { name as appName } from './app.json'
-
-AppRegistry.registerComponent(appName, () => App)
diff --git a/examples/advanced/ios/Podfile b/examples/advanced/ios/Podfile
deleted file mode 100644
index 6ed7b41..0000000
--- a/examples/advanced/ios/Podfile
+++ /dev/null
@@ -1,46 +0,0 @@
-platform :ios, '9.0'
-require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
-
-target 'rn602' do
- # Pods for rn602
- pod 'React', :path => '../node_modules/react-native/'
- pod 'React-Core', :path => '../node_modules/react-native/React'
- pod 'React-DevSupport', :path => '../node_modules/react-native/React'
- pod 'React-fishhook', :path => '../node_modules/react-native/Libraries/fishhook'
- pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
- pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
- pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
- pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
- pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
- pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
- pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
- pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
- pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
- pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket'
- pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
- pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
- pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
- pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
- pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
-
- pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
- pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
- pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
-
- target 'rn602Tests' do
- inherit! :search_paths
- # Pods for testing
- end
-
- use_native_modules!
-end
-
-target 'rn602-tvOS' do
- # Pods for rn602-tvOS
-
- target 'rn602-tvOSTests' do
- inherit! :search_paths
- # Pods for testing
- end
-
-end
diff --git a/examples/advanced/ios/Podfile.lock b/examples/advanced/ios/Podfile.lock
deleted file mode 100644
index 876c58e..0000000
--- a/examples/advanced/ios/Podfile.lock
+++ /dev/null
@@ -1,193 +0,0 @@
-PODS:
- - boost-for-react-native (1.63.0)
- - DoubleConversion (1.1.6)
- - Folly (2018.10.22.00):
- - boost-for-react-native
- - DoubleConversion
- - Folly/Default (= 2018.10.22.00)
- - glog
- - Folly/Default (2018.10.22.00):
- - boost-for-react-native
- - DoubleConversion
- - glog
- - glog (0.3.5)
- - React (0.60.3):
- - React-Core (= 0.60.3)
- - React-DevSupport (= 0.60.3)
- - React-RCTActionSheet (= 0.60.3)
- - React-RCTAnimation (= 0.60.3)
- - React-RCTBlob (= 0.60.3)
- - React-RCTImage (= 0.60.3)
- - React-RCTLinking (= 0.60.3)
- - React-RCTNetwork (= 0.60.3)
- - React-RCTSettings (= 0.60.3)
- - React-RCTText (= 0.60.3)
- - React-RCTVibration (= 0.60.3)
- - React-RCTWebSocket (= 0.60.3)
- - React-Core (0.60.3):
- - Folly (= 2018.10.22.00)
- - React-cxxreact (= 0.60.3)
- - React-jsiexecutor (= 0.60.3)
- - yoga (= 0.60.3.React)
- - React-cxxreact (0.60.3):
- - boost-for-react-native (= 1.63.0)
- - DoubleConversion
- - Folly (= 2018.10.22.00)
- - glog
- - React-jsinspector (= 0.60.3)
- - React-DevSupport (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTWebSocket (= 0.60.3)
- - React-fishhook (0.60.3)
- - React-jsi (0.60.3):
- - boost-for-react-native (= 1.63.0)
- - DoubleConversion
- - Folly (= 2018.10.22.00)
- - glog
- - React-jsi/Default (= 0.60.3)
- - React-jsi/Default (0.60.3):
- - boost-for-react-native (= 1.63.0)
- - DoubleConversion
- - Folly (= 2018.10.22.00)
- - glog
- - React-jsiexecutor (0.60.3):
- - DoubleConversion
- - Folly (= 2018.10.22.00)
- - glog
- - React-cxxreact (= 0.60.3)
- - React-jsi (= 0.60.3)
- - React-jsinspector (0.60.3)
- - react-native-date-picker (2.7.4):
- - React
- - React-RCTActionSheet (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTAnimation (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTBlob (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTNetwork (= 0.60.3)
- - React-RCTWebSocket (= 0.60.3)
- - React-RCTImage (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTNetwork (= 0.60.3)
- - React-RCTLinking (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTNetwork (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTSettings (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTText (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTVibration (0.60.3):
- - React-Core (= 0.60.3)
- - React-RCTWebSocket (0.60.3):
- - React-Core (= 0.60.3)
- - React-fishhook (= 0.60.3)
- - yoga (0.60.3.React)
-
-DEPENDENCIES:
- - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- - React (from `../node_modules/react-native/`)
- - React-Core (from `../node_modules/react-native/React`)
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- - React-DevSupport (from `../node_modules/react-native/React`)
- - React-fishhook (from `../node_modules/react-native/Libraries/fishhook`)
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- - react-native-date-picker (from `../node_modules/react-native-date-picker`)
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- - React-RCTWebSocket (from `../node_modules/react-native/Libraries/WebSocket`)
- - yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-SPEC REPOS:
- https://github.com/CocoaPods/Specs.git:
- - boost-for-react-native
-
-EXTERNAL SOURCES:
- DoubleConversion:
- :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
- Folly:
- :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
- glog:
- :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
- React:
- :path: "../node_modules/react-native/"
- React-Core:
- :path: "../node_modules/react-native/React"
- React-cxxreact:
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
- React-DevSupport:
- :path: "../node_modules/react-native/React"
- React-fishhook:
- :path: "../node_modules/react-native/Libraries/fishhook"
- React-jsi:
- :path: "../node_modules/react-native/ReactCommon/jsi"
- React-jsiexecutor:
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
- React-jsinspector:
- :path: "../node_modules/react-native/ReactCommon/jsinspector"
- react-native-date-picker:
- :path: "../node_modules/react-native-date-picker"
- React-RCTActionSheet:
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
- React-RCTAnimation:
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
- React-RCTBlob:
- :path: "../node_modules/react-native/Libraries/Blob"
- React-RCTImage:
- :path: "../node_modules/react-native/Libraries/Image"
- React-RCTLinking:
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
- React-RCTNetwork:
- :path: "../node_modules/react-native/Libraries/Network"
- React-RCTSettings:
- :path: "../node_modules/react-native/Libraries/Settings"
- React-RCTText:
- :path: "../node_modules/react-native/Libraries/Text"
- React-RCTVibration:
- :path: "../node_modules/react-native/Libraries/Vibration"
- React-RCTWebSocket:
- :path: "../node_modules/react-native/Libraries/WebSocket"
- yoga:
- :path: "../node_modules/react-native/ReactCommon/yoga"
-
-SPEC CHECKSUMS:
- boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
- DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
- Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51
- glog: 1f3da668190260b06b429bb211bfbee5cd790c28
- React: ac23e9cc8d2d4cfe9b536b5cc0c32d19b9937bcf
- React-Core: 84de3cf80e31f0267c5ce0b5b482d59ce30a8a57
- React-cxxreact: a802a1c6b14f3de66ba032460b424c17ececd1e2
- React-DevSupport: ae72c4fc86c03197f007bb24404077c85f6dabc1
- React-fishhook: 12bd79b4461280f441937dea83f11d9fb660edfc
- React-jsi: c2b6e57836bcae2677a036384111dc2c58e94369
- React-jsiexecutor: d9023c5c199114d2b6f38ec861a4d923c73d0735
- React-jsinspector: 817b64f3c8a807f09d78620f4f505868d89b26f3
- react-native-date-picker: 9606a515f5b79db23f552ecb65ca9203e04c6f22
- React-RCTActionSheet: 9c42321fd5652515d706dd722c5a10b1970d7ec8
- React-RCTAnimation: fabb087dde8964c9a835a7fabd0e7e5701787913
- React-RCTBlob: 93f34281d9c9c9e216b25824309eed9fe22a5d41
- React-RCTImage: b09f30159b048eb9a0f859f8f9b0878f3311e8eb
- React-RCTLinking: 9dba672b3d5aadab59e93f9ab8c65e5e24b9fb73
- React-RCTNetwork: 4b2f706819f08b6fa15c47909985f96b80859832
- React-RCTSettings: 59c0eedc36b9aa9dd21cdbb5ab9591ba04132b1f
- React-RCTText: b026f8350c2cbe0daeb9880dd9c6e018fce0daf7
- React-RCTVibration: 5d9ed4a968e9d42880ddcc7c29bee3417c745408
- React-RCTWebSocket: 69d8565d66043f244b4129f3d7154c5689fb7d3e
- yoga: 843fe25849b56131275bf3e5da2c468e96f68aff
-
-PODFILE CHECKSUM: cfa79c36c6126c429e0b57b924c3b791f75678dd
-
-COCOAPODS: 1.8.4
diff --git a/examples/advanced/ios/rn602-tvOS/Info.plist b/examples/advanced/ios/rn602-tvOS/Info.plist
deleted file mode 100644
index ecbd496..0000000
--- a/examples/advanced/ios/rn602-tvOS/Info.plist
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
- LSRequiresIPhoneOS
-
- NSAppTransportSecurity
-
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
-
- NSLocationWhenInUseUsageDescription
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- armv7
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIViewControllerBasedStatusBarAppearance
-
-
-
diff --git a/examples/advanced/ios/rn602-tvOSTests/Info.plist b/examples/advanced/ios/rn602-tvOSTests/Info.plist
deleted file mode 100644
index 886825c..0000000
--- a/examples/advanced/ios/rn602-tvOSTests/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
-
-
diff --git a/examples/advanced/ios/rn602.xcodeproj/project.pbxproj b/examples/advanced/ios/rn602.xcodeproj/project.pbxproj
deleted file mode 100644
index 2dba99d..0000000
--- a/examples/advanced/ios/rn602.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,923 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 00E356F31AD99517003FC87E /* rn602Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rn602Tests.m */; };
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 2DCD954D1E0B4F2C00145EB5 /* rn602Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* rn602Tests.m */; };
- B5765061B4926B9A1A2BF1AC /* libPods-rn602Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 805A9EE59803A3167E034002 /* libPods-rn602Tests.a */; };
- D2E42832EA0AACB5568B366A /* libPods-rn602-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CA66D797825E7823B81511B6 /* libPods-rn602-tvOSTests.a */; };
- E86C593D7900623578EFB203 /* libPods-rn602.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 55419667F8516F99B73AA1A8 /* libPods-rn602.a */; };
- EF554C4897D71B84B5A3BFDA /* libPods-rn602-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 98D6AAA6D71A481B515398F2 /* libPods-rn602-tvOS.a */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = rn602;
- };
- 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
- remoteInfo = "rn602-tvOS";
- };
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXFileReference section */
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
- 00E356EE1AD99517003FC87E /* rn602Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = rn602Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- 00E356F21AD99517003FC87E /* rn602Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = rn602Tests.m; sourceTree = ""; };
- 13B07F961A680F5B00A75B9A /* rn602.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = rn602.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = rn602/AppDelegate.h; sourceTree = ""; };
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = rn602/AppDelegate.m; sourceTree = ""; };
- 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = rn602/Images.xcassets; sourceTree = ""; };
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = rn602/Info.plist; sourceTree = ""; };
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = rn602/main.m; sourceTree = ""; };
- 2D02E47B1E0B4A5D006451C7 /* rn602-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "rn602-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D02E4901E0B4A5D006451C7 /* rn602-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "rn602-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- 36E76E9D29C096E81EB0557D /* Pods-rn602-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-rn602-tvOSTests/Pods-rn602-tvOSTests.release.xcconfig"; sourceTree = ""; };
- 55419667F8516F99B73AA1A8 /* libPods-rn602.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn602.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 5C49BB31D854B07CB7E5D8A5 /* Pods-rn602-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-rn602-tvOSTests/Pods-rn602-tvOSTests.debug.xcconfig"; sourceTree = ""; };
- 7B81928D4022A6C5AA7CC71D /* Pods-rn602-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602-tvOS.release.xcconfig"; path = "Target Support Files/Pods-rn602-tvOS/Pods-rn602-tvOS.release.xcconfig"; sourceTree = ""; };
- 7D71F97509EA675B533D123C /* Pods-rn602Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602Tests.release.xcconfig"; path = "Target Support Files/Pods-rn602Tests/Pods-rn602Tests.release.xcconfig"; sourceTree = ""; };
- 805A9EE59803A3167E034002 /* libPods-rn602Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn602Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 98D6AAA6D71A481B515398F2 /* libPods-rn602-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn602-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- A08C0C9E5283334EAA507F2F /* Pods-rn602.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602.debug.xcconfig"; path = "Target Support Files/Pods-rn602/Pods-rn602.debug.xcconfig"; sourceTree = ""; };
- B69F48BE33997CCCD674BCDD /* Pods-rn602-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-rn602-tvOS/Pods-rn602-tvOS.debug.xcconfig"; sourceTree = ""; };
- B899F7A96FB87AC667C49A51 /* Pods-rn602Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602Tests.debug.xcconfig"; path = "Target Support Files/Pods-rn602Tests/Pods-rn602Tests.debug.xcconfig"; sourceTree = ""; };
- CA66D797825E7823B81511B6 /* libPods-rn602-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-rn602-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- EC3E73148C708DE3B8924FC9 /* Pods-rn602.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-rn602.release.xcconfig"; path = "Target Support Files/Pods-rn602/Pods-rn602.release.xcconfig"; sourceTree = ""; };
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
- ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- B5765061B4926B9A1A2BF1AC /* libPods-rn602Tests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- E86C593D7900623578EFB203 /* libPods-rn602.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- EF554C4897D71B84B5A3BFDA /* libPods-rn602-tvOS.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- D2E42832EA0AACB5568B366A /* libPods-rn602-tvOSTests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 00E356EF1AD99517003FC87E /* rn602Tests */ = {
- isa = PBXGroup;
- children = (
- 00E356F21AD99517003FC87E /* rn602Tests.m */,
- 00E356F01AD99517003FC87E /* Supporting Files */,
- );
- path = rn602Tests;
- sourceTree = "";
- };
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 00E356F11AD99517003FC87E /* Info.plist */,
- );
- name = "Supporting Files";
- sourceTree = "";
- };
- 13B07FAE1A68108700A75B9A /* rn602 */ = {
- isa = PBXGroup;
- children = (
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
- 13B07FB61A68108700A75B9A /* Info.plist */,
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
- 13B07FB71A68108700A75B9A /* main.m */,
- );
- name = rn602;
- sourceTree = "";
- };
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
- 55419667F8516F99B73AA1A8 /* libPods-rn602.a */,
- 98D6AAA6D71A481B515398F2 /* libPods-rn602-tvOS.a */,
- CA66D797825E7823B81511B6 /* libPods-rn602-tvOSTests.a */,
- 805A9EE59803A3167E034002 /* libPods-rn602Tests.a */,
- );
- name = Frameworks;
- sourceTree = "";
- };
- 6C66AA0AB0E5BDEF55CD3AF0 /* Pods */ = {
- isa = PBXGroup;
- children = (
- A08C0C9E5283334EAA507F2F /* Pods-rn602.debug.xcconfig */,
- EC3E73148C708DE3B8924FC9 /* Pods-rn602.release.xcconfig */,
- B69F48BE33997CCCD674BCDD /* Pods-rn602-tvOS.debug.xcconfig */,
- 7B81928D4022A6C5AA7CC71D /* Pods-rn602-tvOS.release.xcconfig */,
- 5C49BB31D854B07CB7E5D8A5 /* Pods-rn602-tvOSTests.debug.xcconfig */,
- 36E76E9D29C096E81EB0557D /* Pods-rn602-tvOSTests.release.xcconfig */,
- B899F7A96FB87AC667C49A51 /* Pods-rn602Tests.debug.xcconfig */,
- 7D71F97509EA675B533D123C /* Pods-rn602Tests.release.xcconfig */,
- );
- name = Pods;
- path = Pods;
- sourceTree = "";
- };
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- );
- name = Libraries;
- sourceTree = "";
- };
- 83CBB9F61A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- 13B07FAE1A68108700A75B9A /* rn602 */,
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
- 00E356EF1AD99517003FC87E /* rn602Tests */,
- 83CBBA001A601CBA00E9B192 /* Products */,
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
- 6C66AA0AB0E5BDEF55CD3AF0 /* Pods */,
- );
- indentWidth = 2;
- sourceTree = "";
- tabWidth = 2;
- usesTabs = 0;
- };
- 83CBBA001A601CBA00E9B192 /* Products */ = {
- isa = PBXGroup;
- children = (
- 13B07F961A680F5B00A75B9A /* rn602.app */,
- 00E356EE1AD99517003FC87E /* rn602Tests.xctest */,
- 2D02E47B1E0B4A5D006451C7 /* rn602-tvOS.app */,
- 2D02E4901E0B4A5D006451C7 /* rn602-tvOSTests.xctest */,
- );
- name = Products;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 00E356ED1AD99517003FC87E /* rn602Tests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rn602Tests" */;
- buildPhases = (
- 55064E78E85DBB21B4EE0564 /* [CP] Check Pods Manifest.lock */,
- 00E356EA1AD99517003FC87E /* Sources */,
- 00E356EB1AD99517003FC87E /* Frameworks */,
- 00E356EC1AD99517003FC87E /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
- );
- name = rn602Tests;
- productName = rn602Tests;
- productReference = 00E356EE1AD99517003FC87E /* rn602Tests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 13B07F861A680F5B00A75B9A /* rn602 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "rn602" */;
- buildPhases = (
- A6F31DA040171C3FE6414F64 /* [CP] Check Pods Manifest.lock */,
- FD10A7F022414F080027D42C /* Start Packager */,
- 13B07F871A680F5B00A75B9A /* Sources */,
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
- 13B07F8E1A680F5B00A75B9A /* Resources */,
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = rn602;
- productName = rn602;
- productReference = 13B07F961A680F5B00A75B9A /* rn602.app */;
- productType = "com.apple.product-type.application";
- };
- 2D02E47A1E0B4A5D006451C7 /* rn602-tvOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn602-tvOS" */;
- buildPhases = (
- 310E915BC3A753F1F61F9863 /* [CP] Check Pods Manifest.lock */,
- FD10A7F122414F3F0027D42C /* Start Packager */,
- 2D02E4771E0B4A5D006451C7 /* Sources */,
- 2D02E4781E0B4A5D006451C7 /* Frameworks */,
- 2D02E4791E0B4A5D006451C7 /* Resources */,
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "rn602-tvOS";
- productName = "rn602-tvOS";
- productReference = 2D02E47B1E0B4A5D006451C7 /* rn602-tvOS.app */;
- productType = "com.apple.product-type.application";
- };
- 2D02E48F1E0B4A5D006451C7 /* rn602-tvOSTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn602-tvOSTests" */;
- buildPhases = (
- 8A371C2E6D06A31F35AAEBC5 /* [CP] Check Pods Manifest.lock */,
- 2D02E48C1E0B4A5D006451C7 /* Sources */,
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
- 2D02E48E1E0B4A5D006451C7 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
- );
- name = "rn602-tvOSTests";
- productName = "rn602-tvOSTests";
- productReference = 2D02E4901E0B4A5D006451C7 /* rn602-tvOSTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0940;
- ORGANIZATIONNAME = Facebook;
- TargetAttributes = {
- 00E356ED1AD99517003FC87E = {
- CreatedOnToolsVersion = 6.2;
- TestTargetID = 13B07F861A680F5B00A75B9A;
- };
- 2D02E47A1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- };
- 2D02E48F1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = 2D02E47A1E0B4A5D006451C7;
- };
- };
- };
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "rn602" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 83CBB9F61A601CBA00E9B192;
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 13B07F861A680F5B00A75B9A /* rn602 */,
- 00E356ED1AD99517003FC87E /* rn602Tests */,
- 2D02E47A1E0B4A5D006451C7 /* rn602-tvOS */,
- 2D02E48F1E0B4A5D006451C7 /* rn602-tvOSTests */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 00E356EC1AD99517003FC87E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4791E0B4A5D006451C7 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native code and images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native Code And Images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 310E915BC3A753F1F61F9863 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-rn602-tvOS-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 55064E78E85DBB21B4EE0564 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-rn602Tests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 8A371C2E6D06A31F35AAEBC5 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-rn602-tvOSTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- A6F31DA040171C3FE6414F64 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-rn602-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- FD10A7F022414F080027D42C /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
- showEnvVarsInLog = 0;
- };
- FD10A7F122414F3F0027D42C /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
- showEnvVarsInLog = 0;
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 00E356EA1AD99517003FC87E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 00E356F31AD99517003FC87E /* rn602Tests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F871A680F5B00A75B9A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4771E0B4A5D006451C7 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2DCD954D1E0B4F2C00145EB5 /* rn602Tests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A /* rn602 */;
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
- };
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2D02E47A1E0B4A5D006451C7 /* rn602-tvOS */;
- targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
- };
-/* End PBXTargetDependency section */
-
-/* Begin PBXVariantGroup section */
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 13B07FB21A68108700A75B9A /* Base */,
- );
- name = LaunchScreen.xib;
- path = rn602;
- sourceTree = "";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 00E356F61AD99517003FC87E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B899F7A96FB87AC667C49A51 /* Pods-rn602Tests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- INFOPLIST_FILE = rn602Tests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn602.app/rn602";
- };
- name = Debug;
- };
- 00E356F71AD99517003FC87E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7D71F97509EA675B533D123C /* Pods-rn602Tests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- COPY_PHASE_STRIP = NO;
- INFOPLIST_FILE = rn602Tests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- "$(inherited)",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn602.app/rn602";
- };
- name = Release;
- };
- 13B07F941A680F5B00A75B9A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = A08C0C9E5283334EAA507F2F /* Pods-rn602.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CURRENT_PROJECT_VERSION = 1;
- DEAD_CODE_STRIPPING = NO;
- INFOPLIST_FILE = rn602/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = rn602;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 13B07F951A680F5B00A75B9A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = EC3E73148C708DE3B8924FC9 /* Pods-rn602.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CURRENT_PROJECT_VERSION = 1;
- INFOPLIST_FILE = rn602/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = rn602;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- 2D02E4971E0B4A5E006451C7 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B69F48BE33997CCCD674BCDD /* Pods-rn602-tvOS.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "rn602-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.rn602-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Debug;
- };
- 2D02E4981E0B4A5E006451C7 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 7B81928D4022A6C5AA7CC71D /* Pods-rn602-tvOS.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "rn602-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.rn602-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Release;
- };
- 2D02E4991E0B4A5E006451C7 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 5C49BB31D854B07CB7E5D8A5 /* Pods-rn602-tvOSTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "rn602-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.rn602-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn602-tvOS.app/rn602-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Debug;
- };
- 2D02E49A1E0B4A5E006451C7 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 36E76E9D29C096E81EB0557D /* Pods-rn602-tvOSTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "rn602-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.rn602-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/rn602-tvOS.app/rn602-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Release;
- };
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 83CBBA211A601CBA00E9B192 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "rn602Tests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00E356F61AD99517003FC87E /* Debug */,
- 00E356F71AD99517003FC87E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "rn602" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 13B07F941A680F5B00A75B9A /* Debug */,
- 13B07F951A680F5B00A75B9A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn602-tvOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4971E0B4A5E006451C7 /* Debug */,
- 2D02E4981E0B4A5E006451C7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "rn602-tvOSTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4991E0B4A5E006451C7 /* Debug */,
- 2D02E49A1E0B4A5E006451C7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "rn602" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83CBBA201A601CBA00E9B192 /* Debug */,
- 83CBBA211A601CBA00E9B192 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
-}
diff --git a/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602-tvOS.xcscheme b/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602-tvOS.xcscheme
deleted file mode 100644
index 396791b..0000000
--- a/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602-tvOS.xcscheme
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602.xcscheme b/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602.xcscheme
deleted file mode 100644
index 3c6436d..0000000
--- a/examples/advanced/ios/rn602.xcodeproj/xcshareddata/xcschemes/rn602.xcscheme
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/advanced/ios/rn602.xcworkspace/contents.xcworkspacedata b/examples/advanced/ios/rn602.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 073d416..0000000
--- a/examples/advanced/ios/rn602.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
diff --git a/examples/advanced/ios/rn602/AppDelegate.h b/examples/advanced/ios/rn602/AppDelegate.h
deleted file mode 100644
index 2726d5e..0000000
--- a/examples/advanced/ios/rn602/AppDelegate.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-#import
-
-@interface AppDelegate : UIResponder
-
-@property (nonatomic, strong) UIWindow *window;
-
-@end
diff --git a/examples/advanced/ios/rn602/AppDelegate.m b/examples/advanced/ios/rn602/AppDelegate.m
deleted file mode 100644
index e4f6339..0000000
--- a/examples/advanced/ios/rn602/AppDelegate.m
+++ /dev/null
@@ -1,42 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import "AppDelegate.h"
-
-#import
-#import
-#import
-
-@implementation AppDelegate
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
-{
- RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
- RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
- moduleName:@"rn602"
- initialProperties:nil];
-
- rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
-
- self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- UIViewController *rootViewController = [UIViewController new];
- rootViewController.view = rootView;
- self.window.rootViewController = rootViewController;
- [self.window makeKeyAndVisible];
- return YES;
-}
-
-- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
-{
-#if DEBUG
- return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
-#else
- return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
-#endif
-}
-
-@end
diff --git a/examples/advanced/ios/rn602/Base.lproj/LaunchScreen.xib b/examples/advanced/ios/rn602/Base.lproj/LaunchScreen.xib
deleted file mode 100644
index 25b9def..0000000
--- a/examples/advanced/ios/rn602/Base.lproj/LaunchScreen.xib
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/advanced/ios/rn602/Images.xcassets/AppIcon.appiconset/Contents.json b/examples/advanced/ios/rn602/Images.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 118c98f..0000000
--- a/examples/advanced/ios/rn602/Images.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "images" : [
- {
- "idiom" : "iphone",
- "size" : "29x29",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "29x29",
- "scale" : "3x"
- },
- {
- "idiom" : "iphone",
- "size" : "40x40",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "40x40",
- "scale" : "3x"
- },
- {
- "idiom" : "iphone",
- "size" : "60x60",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "60x60",
- "scale" : "3x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/examples/advanced/ios/rn602/Images.xcassets/Contents.json b/examples/advanced/ios/rn602/Images.xcassets/Contents.json
deleted file mode 100644
index 2d92bd5..0000000
--- a/examples/advanced/ios/rn602/Images.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
diff --git a/examples/advanced/ios/rn602/Info.plist b/examples/advanced/ios/rn602/Info.plist
deleted file mode 100644
index 0d03832..0000000
--- a/examples/advanced/ios/rn602/Info.plist
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleDisplayName
- rn602
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
- LSRequiresIPhoneOS
-
- NSAppTransportSecurity
-
- NSAllowsArbitraryLoads
-
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
-
- NSLocationWhenInUseUsageDescription
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- armv7
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIViewControllerBasedStatusBarAppearance
-
-
-
diff --git a/examples/advanced/ios/rn602/main.m b/examples/advanced/ios/rn602/main.m
deleted file mode 100644
index c316cf8..0000000
--- a/examples/advanced/ios/rn602/main.m
+++ /dev/null
@@ -1,16 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-
-#import "AppDelegate.h"
-
-int main(int argc, char * argv[]) {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
- }
-}
diff --git a/examples/advanced/ios/rn602Tests/Info.plist b/examples/advanced/ios/rn602Tests/Info.plist
deleted file mode 100644
index ba72822..0000000
--- a/examples/advanced/ios/rn602Tests/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
-
-
diff --git a/examples/advanced/ios/rn602Tests/rn602Tests.m b/examples/advanced/ios/rn602Tests/rn602Tests.m
deleted file mode 100644
index 8085478..0000000
--- a/examples/advanced/ios/rn602Tests/rn602Tests.m
+++ /dev/null
@@ -1,68 +0,0 @@
-/**
- * Copyright (c) Facebook, Inc. and its affiliates.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-#import
-
-#import
-#import
-
-#define TIMEOUT_SECONDS 600
-#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
-
-@interface rn602Tests : XCTestCase
-
-@end
-
-@implementation rn602Tests
-
-- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
-{
- if (test(view)) {
- return YES;
- }
- for (UIView *subview in [view subviews]) {
- if ([self findSubviewInView:subview matching:test]) {
- return YES;
- }
- }
- return NO;
-}
-
-- (void)testRendersWelcomeScreen
-{
- UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
- NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
- BOOL foundElement = NO;
-
- __block NSString *redboxError = nil;
- RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
- if (level >= RCTLogLevelError) {
- redboxError = message;
- }
- });
-
- while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
- [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
- [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
-
- foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
- if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
- return YES;
- }
- return NO;
- }];
- }
-
- RCTSetLogFunction(RCTDefaultLogFunction);
-
- XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
- XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
-}
-
-
-@end
diff --git a/examples/advanced/metro.config.js b/examples/advanced/metro.config.js
deleted file mode 100644
index f3c85f0..0000000
--- a/examples/advanced/metro.config.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * Metro configuration for React Native
- * https://github.com/facebook/react-native
- *
- * @format
- */
-
-module.exports = {
- transformer: {
- getTransformOptions: async () => ({
- transform: {
- experimentalImportSupport: false,
- inlineRequires: false,
- },
- }),
- },
-}
diff --git a/examples/advanced/package.json b/examples/advanced/package.json
deleted file mode 100644
index ffe6fec..0000000
--- a/examples/advanced/package.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "name": "rn602",
- "version": "0.0.1",
- "private": true,
- "scripts": {
- "start": "react-native start",
- "test": "jest",
- "lint": "eslint .",
- "postinstall": "rm -rf node_modules/react-native-date-picker/examples*"
- },
- "dependencies": {
- "react": "16.8.6",
- "react-native": "0.60.3",
- "react-native-date-picker": "../../"
- },
- "devDependencies": {
- "@babel/core": "^7.5.4",
- "@babel/runtime": "^7.8.3",
- "@react-native-community/eslint-config": "^0.0.5",
- "babel-jest": "^24.8.0",
- "eslint": "^6.0.1",
- "jest": "^24.8.0",
- "metro-react-native-babel-preset": "^0.55.0",
- "react-test-renderer": "16.8.6"
- },
- "jest": {
- "preset": "react-native"
- }
-}
diff --git a/examples/advanced/yarn.lock b/examples/advanced/yarn.lock
deleted file mode 100644
index 0c3d7d1..0000000
--- a/examples/advanced/yarn.lock
+++ /dev/null
@@ -1,6517 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
- integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
- dependencies:
- "@babel/highlight" "^7.8.3"
-
-"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.5.4":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.3.tgz#30b0ebb4dd1585de6923a0b4d179e0b9f5d82941"
- integrity sha512-4XFkf8AwyrEG7Ziu3L2L0Cv+WyY47Tcsp70JFmpftbAA1K7YL/sgE9jh9HyNj08Y/U50ItUchpN0w6HxAoX1rA==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.8.3"
- "@babel/helpers" "^7.8.3"
- "@babel/parser" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.0"
- lodash "^4.17.13"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/generator@^7.0.0", "@babel/generator@^7.4.0", "@babel/generator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.3.tgz#0e22c005b0a94c1c74eafe19ef78ce53a4d45c03"
- integrity sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==
- dependencies:
- "@babel/types" "^7.8.3"
- jsesc "^2.5.1"
- lodash "^4.17.13"
- source-map "^0.5.0"
-
-"@babel/helper-annotate-as-pure@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
- integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
- integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-builder-react-jsx@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz#dee98d7d79cc1f003d80b76fe01c7f8945665ff6"
- integrity sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ==
- dependencies:
- "@babel/types" "^7.8.3"
- esutils "^2.0.0"
-
-"@babel/helper-call-delegate@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz#de82619898aa605d409c42be6ffb8d7204579692"
- integrity sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A==
- dependencies:
- "@babel/helper-hoist-variables" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-create-class-features-plugin@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.3.tgz#5b94be88c255f140fd2c10dd151e7f98f4bff397"
- integrity sha512-qmp4pD7zeTxsv0JNecSBsEmG1ei2MqwJq4YQcK3ZWm/0t07QstWfvuV/vm3Qt5xNMFETn2SZqpMx2MQzbtq+KA==
- dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-member-expression-to-functions" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
-
-"@babel/helper-create-regexp-features-plugin@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz#c774268c95ec07ee92476a3862b75cc2839beb79"
- integrity sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q==
- dependencies:
- "@babel/helper-regex" "^7.8.3"
- regexpu-core "^4.6.0"
-
-"@babel/helper-define-map@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
- integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
- dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/types" "^7.8.3"
- lodash "^4.17.13"
-
-"@babel/helper-explode-assignable-expression@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
- integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
- dependencies:
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-function-name@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
- integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
- dependencies:
- "@babel/helper-get-function-arity" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-get-function-arity@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
- integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-hoist-variables@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
- integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-member-expression-to-functions@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
- integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
- integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-module-transforms@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz#d305e35d02bee720fbc2c3c3623aa0c316c01590"
- integrity sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q==
- dependencies:
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-simple-access" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.8.3"
- lodash "^4.17.13"
-
-"@babel/helper-optimise-call-expression@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
- integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
- integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
-
-"@babel/helper-regex@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
- integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==
- dependencies:
- lodash "^4.17.13"
-
-"@babel/helper-remap-async-to-generator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
- integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-wrap-function" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-replace-supers@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz#91192d25f6abbcd41da8a989d4492574fb1530bc"
- integrity sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA==
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-simple-access@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
- integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
- dependencies:
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helper-split-export-declaration@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
- integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
- dependencies:
- "@babel/types" "^7.8.3"
-
-"@babel/helper-wrap-function@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
- integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
- dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/helpers@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.3.tgz#382fbb0382ce7c4ce905945ab9641d688336ce85"
- integrity sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ==
- dependencies:
- "@babel/template" "^7.8.3"
- "@babel/traverse" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/highlight@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797"
- integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==
- dependencies:
- chalk "^2.0.0"
- esutils "^2.0.2"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.3.tgz#790874091d2001c9be6ec426c2eed47bc7679081"
- integrity sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==
-
-"@babel/plugin-external-helpers@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-external-helpers/-/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b"
- integrity sha512-mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-proposal-class-properties@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e"
- integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-proposal-export-default-from@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.8.3.tgz#4cb7c2fdeaed490b60d9bfd3dc8a20f81f9c2e7c"
- integrity sha512-PYtv2S2OdCdp7GSPDg5ndGZFm9DmWFvuLoS5nBxZCgOBggluLnhTScspJxng96alHQzPyrrHxvC9/w4bFuspeA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-export-default-from" "^7.8.3"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
- integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
-
-"@babel/plugin-proposal-object-rest-spread@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz#eb5ae366118ddca67bed583b53d7554cad9951bb"
- integrity sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
-
-"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
- integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
-
-"@babel/plugin-proposal-optional-chaining@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543"
- integrity sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
-
-"@babel/plugin-syntax-class-properties@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7"
- integrity sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-dynamic-import@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
- integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.8.3.tgz#f1e55ce850091442af4ba9c2550106035b29d678"
- integrity sha512-a1qnnsr73KLNIQcQlcQ4ZHxqqfBKM6iNQZW2OMTyxNbA2WC7SHWHtGVpFzWtQAuS2pspkWVzdEBXXx8Ik0Za4w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f"
- integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94"
- integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
- integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
- integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
- integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.8.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
- integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-typescript@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc"
- integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-arrow-functions@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
- integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-async-to-generator@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
- integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
- dependencies:
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-remap-async-to-generator" "^7.8.3"
-
-"@babel/plugin-transform-block-scoped-functions@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
- integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-block-scoping@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
- integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- lodash "^4.17.13"
-
-"@babel/plugin-transform-classes@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz#46fd7a9d2bb9ea89ce88720477979fe0d71b21b8"
- integrity sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-define-map" "^7.8.3"
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-optimise-call-expression" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
- globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
- integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-destructuring@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz#20ddfbd9e4676906b1056ee60af88590cc7aaa0b"
- integrity sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-exponentiation-operator@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
- integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-flow-strip-types@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.8.3.tgz#da705a655466b2a9b36046b57bf0cbcd53551bd4"
- integrity sha512-g/6WTWG/xbdd2exBBzMfygjX/zw4eyNC4X8pRaq7aRHRoDUCzAIu3kGYIXviOv8BjCuWm8vDBwjHcjiRNgXrPA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-flow" "^7.8.3"
-
-"@babel/plugin-transform-for-of@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz#15f17bce2fc95c7d59a24b299e83e81cedc22e18"
- integrity sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-function-name@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
- integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
- dependencies:
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-literals@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
- integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-member-expression-literals@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
- integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-modules-commonjs@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz#df251706ec331bd058a34bdd72613915f82928a5"
- integrity sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==
- dependencies:
- "@babel/helper-module-transforms" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-simple-access" "^7.8.3"
- babel-plugin-dynamic-import-node "^2.3.0"
-
-"@babel/plugin-transform-object-assign@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.8.3.tgz#dc3b8dd50ef03837868a37b7df791f64f288538e"
- integrity sha512-i3LuN8tPDqUCRFu3dkzF2r1Nx0jp4scxtm7JxtIqI9he9Vk20YD+/zshdzR9JLsoBMlJlNR82a62vQExNEVx/Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-object-super@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
- integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-replace-supers" "^7.8.3"
-
-"@babel/plugin-transform-parameters@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz#7890576a13b17325d8b7d44cb37f21dc3bbdda59"
- integrity sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q==
- dependencies:
- "@babel/helper-call-delegate" "^7.8.3"
- "@babel/helper-get-function-arity" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-property-literals@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
- integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-react-display-name@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5"
- integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-react-jsx-source@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.8.3.tgz#951e75a8af47f9f120db731be095d2b2c34920e0"
- integrity sha512-PLMgdMGuVDtRS/SzjNEQYUT8f4z1xb2BAT54vM1X5efkVuYBf5WyGUMbpmARcfq3NaglIwz08UVQK4HHHbC6ag==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
-
-"@babel/plugin-transform-react-jsx@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz#4220349c0390fdefa505365f68c103562ab2fc4a"
- integrity sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g==
- dependencies:
- "@babel/helper-builder-react-jsx" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-jsx" "^7.8.3"
-
-"@babel/plugin-transform-regenerator@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz#b31031e8059c07495bf23614c97f3d9698bc6ec8"
- integrity sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA==
- dependencies:
- regenerator-transform "^0.14.0"
-
-"@babel/plugin-transform-runtime@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz#c0153bc0a5375ebc1f1591cb7eea223adea9f169"
- integrity sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ==
- dependencies:
- "@babel/helper-module-imports" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- resolve "^1.8.1"
- semver "^5.5.1"
-
-"@babel/plugin-transform-shorthand-properties@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
- integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-spread@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
- integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-sticky-regex@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
- integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/helper-regex" "^7.8.3"
-
-"@babel/plugin-transform-template-literals@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
- integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-transform-typescript@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.8.3.tgz#be6f01a7ef423be68e65ace1f04fc407e6d88917"
- integrity sha512-Ebj230AxcrKGZPKIp4g4TdQLrqX95TobLUWKd/CwG7X1XHUH1ZpkpFvXuXqWbtGRWb7uuEWNlrl681wsOArAdQ==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
- "@babel/plugin-syntax-typescript" "^7.8.3"
-
-"@babel/plugin-transform-unicode-regex@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
- integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.8.3"
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/register@^7.0.0":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.8.3.tgz#5d5d30cfcc918437535d724b8ac1e4a60c5db1f8"
- integrity sha512-t7UqebaWwo9nXWClIPLPloa5pN33A2leVs8Hf0e9g9YwUP8/H9NeR7DJU+4CXo23QtjChQv5a3DjEtT83ih1rg==
- dependencies:
- find-cache-dir "^2.0.0"
- lodash "^4.17.13"
- make-dir "^2.1.0"
- pirates "^4.0.0"
- source-map-support "^0.5.16"
-
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.3.tgz#0811944f73a6c926bb2ad35e918dcc1bfab279f1"
- integrity sha512-fVHx1rzEmwB130VTkLnxR+HmxcTjGzH12LYQcFFoBwakMd3aOMD4OsRN7tGG/UOYE2ektgFrS8uACAoRk1CY0w==
- dependencies:
- regenerator-runtime "^0.13.2"
-
-"@babel/template@^7.0.0", "@babel/template@^7.4.0", "@babel/template@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz#e02ad04fe262a657809327f578056ca15fd4d1b8"
- integrity sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/parser" "^7.8.3"
- "@babel/types" "^7.8.3"
-
-"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.3.tgz#a826215b011c9b4f73f3a893afbc05151358bf9a"
- integrity sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==
- dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.8.3"
- "@babel/helper-function-name" "^7.8.3"
- "@babel/helper-split-export-declaration" "^7.8.3"
- "@babel/parser" "^7.8.3"
- "@babel/types" "^7.8.3"
- debug "^4.1.0"
- globals "^11.1.0"
- lodash "^4.17.13"
-
-"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c"
- integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==
- dependencies:
- esutils "^2.0.2"
- lodash "^4.17.13"
- to-fast-properties "^2.0.0"
-
-"@cnakazawa/watch@^1.0.3":
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
- integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
- dependencies:
- exec-sh "^0.3.2"
- minimist "^1.2.0"
-
-"@hapi/address@2.x.x":
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
- integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
-
-"@hapi/bourne@1.x.x":
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a"
- integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==
-
-"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0":
- version "8.5.0"
- resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.0.tgz#2f9ce301c8898e1c3248b0a8564696b24d1a9a5a"
- integrity sha512-7XYT10CZfPsH7j9F1Jmg1+d0ezOux2oM2GfArAzLwWe4mE2Dr3hVjsAL6+TFY49RRJlCdJDMw3nJsLFroTc8Kw==
-
-"@hapi/joi@^15.0.3":
- version "15.1.1"
- resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7"
- integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==
- dependencies:
- "@hapi/address" "2.x.x"
- "@hapi/bourne" "1.x.x"
- "@hapi/hoek" "8.x.x"
- "@hapi/topo" "3.x.x"
-
-"@hapi/topo@3.x.x":
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29"
- integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
- dependencies:
- "@hapi/hoek" "^8.3.0"
-
-"@jest/console@^24.7.1", "@jest/console@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0"
- integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==
- dependencies:
- "@jest/source-map" "^24.9.0"
- chalk "^2.0.1"
- slash "^2.0.0"
-
-"@jest/core@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4"
- integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==
- dependencies:
- "@jest/console" "^24.7.1"
- "@jest/reporters" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/transform" "^24.9.0"
- "@jest/types" "^24.9.0"
- ansi-escapes "^3.0.0"
- chalk "^2.0.1"
- exit "^0.1.2"
- graceful-fs "^4.1.15"
- jest-changed-files "^24.9.0"
- jest-config "^24.9.0"
- jest-haste-map "^24.9.0"
- jest-message-util "^24.9.0"
- jest-regex-util "^24.3.0"
- jest-resolve "^24.9.0"
- jest-resolve-dependencies "^24.9.0"
- jest-runner "^24.9.0"
- jest-runtime "^24.9.0"
- jest-snapshot "^24.9.0"
- jest-util "^24.9.0"
- jest-validate "^24.9.0"
- jest-watcher "^24.9.0"
- micromatch "^3.1.10"
- p-each-series "^1.0.0"
- realpath-native "^1.1.0"
- rimraf "^2.5.4"
- slash "^2.0.0"
- strip-ansi "^5.0.0"
-
-"@jest/environment@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18"
- integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==
- dependencies:
- "@jest/fake-timers" "^24.9.0"
- "@jest/transform" "^24.9.0"
- "@jest/types" "^24.9.0"
- jest-mock "^24.9.0"
-
-"@jest/fake-timers@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93"
- integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==
- dependencies:
- "@jest/types" "^24.9.0"
- jest-message-util "^24.9.0"
- jest-mock "^24.9.0"
-
-"@jest/reporters@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43"
- integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==
- dependencies:
- "@jest/environment" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/transform" "^24.9.0"
- "@jest/types" "^24.9.0"
- chalk "^2.0.1"
- exit "^0.1.2"
- glob "^7.1.2"
- istanbul-lib-coverage "^2.0.2"
- istanbul-lib-instrument "^3.0.1"
- istanbul-lib-report "^2.0.4"
- istanbul-lib-source-maps "^3.0.1"
- istanbul-reports "^2.2.6"
- jest-haste-map "^24.9.0"
- jest-resolve "^24.9.0"
- jest-runtime "^24.9.0"
- jest-util "^24.9.0"
- jest-worker "^24.6.0"
- node-notifier "^5.4.2"
- slash "^2.0.0"
- source-map "^0.6.0"
- string-length "^2.0.0"
-
-"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714"
- integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==
- dependencies:
- callsites "^3.0.0"
- graceful-fs "^4.1.15"
- source-map "^0.6.0"
-
-"@jest/test-result@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca"
- integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==
- dependencies:
- "@jest/console" "^24.9.0"
- "@jest/types" "^24.9.0"
- "@types/istanbul-lib-coverage" "^2.0.0"
-
-"@jest/test-sequencer@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31"
- integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==
- dependencies:
- "@jest/test-result" "^24.9.0"
- jest-haste-map "^24.9.0"
- jest-runner "^24.9.0"
- jest-runtime "^24.9.0"
-
-"@jest/transform@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56"
- integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/types" "^24.9.0"
- babel-plugin-istanbul "^5.1.0"
- chalk "^2.0.1"
- convert-source-map "^1.4.0"
- fast-json-stable-stringify "^2.0.0"
- graceful-fs "^4.1.15"
- jest-haste-map "^24.9.0"
- jest-regex-util "^24.9.0"
- jest-util "^24.9.0"
- micromatch "^3.1.10"
- pirates "^4.0.1"
- realpath-native "^1.1.0"
- slash "^2.0.0"
- source-map "^0.6.1"
- write-file-atomic "2.4.1"
-
-"@jest/types@^24.9.0":
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59"
- integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^1.1.1"
- "@types/yargs" "^13.0.0"
-
-"@react-native-community/cli-platform-android@^2.0.1", "@react-native-community/cli-platform-android@^2.9.0":
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-2.9.0.tgz#28831e61ce565a2c7d1905852fce1eecfd33cb5e"
- integrity sha512-VEQs4Q6R5tnlYFrQIFoPEWjLc43whRHC9HeH+idbFymwDqysLVUffQbb9D6PJUj+C/AvrDhBhU6S3tDjGbSsag==
- dependencies:
- "@react-native-community/cli-tools" "^2.8.3"
- chalk "^2.4.2"
- execa "^1.0.0"
- jetifier "^1.6.2"
- logkitty "^0.6.0"
- slash "^3.0.0"
- xmldoc "^1.1.2"
-
-"@react-native-community/cli-platform-ios@^2.0.1", "@react-native-community/cli-platform-ios@^2.10.0":
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-2.10.0.tgz#ee494d2f9a8f8727bd5eb3c446f22ebb5429b624"
- integrity sha512-z5BQKyT/bgTSdHhvsFNf++6VP50vtOOaITnNKvw4954wURjv5JOQh1De3BngyaDOoGfV1mXkCxutqAXqSeuIjw==
- dependencies:
- "@react-native-community/cli-tools" "^2.8.3"
- chalk "^2.4.2"
- xcode "^2.0.0"
-
-"@react-native-community/cli-tools@^2.8.3":
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-2.8.3.tgz#0e2249f48cf4603fb8d740a9f0715c31ac131ceb"
- integrity sha512-N5Pz+pR+GFq3JApjd0SW4jp9KC7kbKsMH65QLRh30JNsxdPvNkYox6/ZZdkvdXaI5ev3EckR7eqlcwi5gpVTYQ==
- dependencies:
- chalk "^2.4.2"
- lodash "^4.17.5"
- mime "^2.4.1"
- node-fetch "^2.5.0"
-
-"@react-native-community/cli@^2.0.1":
- version "2.10.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-2.10.0.tgz#3bda7a77dadfde006d81ee835263b5ff88f1b590"
- integrity sha512-KldnMwYzNJlbbJpJQ4AxwTMp89qqwilI1lEvCAwKmiviWuyYGACCQsXI7ikShRaQeakc28zyN2ldbkbrHeOoJA==
- dependencies:
- "@hapi/joi" "^15.0.3"
- "@react-native-community/cli-platform-android" "^2.9.0"
- "@react-native-community/cli-platform-ios" "^2.10.0"
- "@react-native-community/cli-tools" "^2.8.3"
- chalk "^2.4.2"
- commander "^2.19.0"
- compression "^1.7.1"
- connect "^3.6.5"
- cosmiconfig "^5.1.0"
- deepmerge "^3.2.0"
- envinfo "^7.1.0"
- errorhandler "^1.5.0"
- execa "^1.0.0"
- fs-extra "^7.0.1"
- glob "^7.1.1"
- graceful-fs "^4.1.3"
- inquirer "^3.0.6"
- lodash "^4.17.5"
- metro "^0.54.1"
- metro-config "^0.54.1"
- metro-core "^0.54.1"
- metro-react-native-babel-transformer "^0.54.1"
- minimist "^1.2.0"
- mkdirp "^0.5.1"
- morgan "^1.9.0"
- node-notifier "^5.2.1"
- open "^6.2.0"
- ora "^3.4.0"
- plist "^3.0.0"
- semver "^5.0.3"
- serve-static "^1.13.1"
- shell-quote "1.6.1"
- ws "^1.1.0"
-
-"@react-native-community/eslint-config@^0.0.5":
- version "0.0.5"
- resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-0.0.5.tgz#584f6493258202a57efc22e7be66966e43832795"
- integrity sha512-jwO2tnKaTPTLX5XYXMHGEnFdf543SU7jz98/OF5mDH3b7lP+BOaCD+jVfqqHoDRkcqyPlYiR1CgwVGWpi0vMWg==
- dependencies:
- "@typescript-eslint/eslint-plugin" "^1.5.0"
- "@typescript-eslint/parser" "^1.5.0"
- babel-eslint "10.0.1"
- eslint-plugin-eslint-comments "^3.1.1"
- eslint-plugin-flowtype "2.50.3"
- eslint-plugin-jest "22.4.1"
- eslint-plugin-prettier "2.6.2"
- eslint-plugin-react "7.12.4"
- eslint-plugin-react-hooks "^1.5.1"
- eslint-plugin-react-native "3.6.0"
- prettier "1.16.4"
-
-"@types/babel__core@^7.1.0":
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
- integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
- "@types/babel__generator" "*"
- "@types/babel__template" "*"
- "@types/babel__traverse" "*"
-
-"@types/babel__generator@*":
- version "7.6.1"
- resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04"
- integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==
- dependencies:
- "@babel/types" "^7.0.0"
-
-"@types/babel__template@*":
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
- integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
- dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
-
-"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
- version "7.0.8"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.8.tgz#479a4ee3e291a403a1096106013ec22cf9b64012"
- integrity sha512-yGeB2dHEdvxjP0y4UbRtQaSkXJ9649fYCmIdRoul5kfAoGCwxuCbMhag0k3RPfnuh9kPGm8x89btcfDEXdVWGw==
- dependencies:
- "@babel/types" "^7.3.0"
-
-"@types/eslint-visitor-keys@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"
- integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
-
-"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
- integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
-
-"@types/istanbul-lib-report@*":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
- integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
- dependencies:
- "@types/istanbul-lib-coverage" "*"
-
-"@types/istanbul-reports@^1.1.1":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
- integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
- dependencies:
- "@types/istanbul-lib-coverage" "*"
- "@types/istanbul-lib-report" "*"
-
-"@types/json-schema@^7.0.3":
- version "7.0.4"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"
- integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
-
-"@types/stack-utils@^1.0.1":
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
- integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
-
-"@types/yargs-parser@*":
- version "15.0.0"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d"
- integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
-
-"@types/yargs@^13.0.0":
- version "13.0.6"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.6.tgz#6aed913a92c262c13b94d4bca8043237de202124"
- integrity sha512-IkltIncDQWv6fcAvnHtJ6KtkmY/vtR3bViOaCzpj/A3yNhlfZAgxNe6AEQD1cQrkYD+YsKVo08DSxvNKEsD7BA==
- dependencies:
- "@types/yargs-parser" "*"
-
-"@typescript-eslint/eslint-plugin@^1.5.0":
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.13.0.tgz#22fed9b16ddfeb402fd7bcde56307820f6ebc49f"
- integrity sha512-WQHCozMnuNADiqMtsNzp96FNox5sOVpU8Xt4meaT4em8lOG1SrOv92/mUbEHQVh90sldKSfcOc/I0FOb/14G1g==
- dependencies:
- "@typescript-eslint/experimental-utils" "1.13.0"
- eslint-utils "^1.3.1"
- functional-red-black-tree "^1.0.1"
- regexpp "^2.0.1"
- tsutils "^3.7.0"
-
-"@typescript-eslint/experimental-utils@1.13.0":
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e"
- integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==
- dependencies:
- "@types/json-schema" "^7.0.3"
- "@typescript-eslint/typescript-estree" "1.13.0"
- eslint-scope "^4.0.0"
-
-"@typescript-eslint/parser@^1.5.0":
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.13.0.tgz#61ac7811ea52791c47dc9fd4dd4a184fae9ac355"
- integrity sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ==
- dependencies:
- "@types/eslint-visitor-keys" "^1.0.0"
- "@typescript-eslint/experimental-utils" "1.13.0"
- "@typescript-eslint/typescript-estree" "1.13.0"
- eslint-visitor-keys "^1.0.0"
-
-"@typescript-eslint/typescript-estree@1.13.0":
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz#8140f17d0f60c03619798f1d628b8434913dc32e"
- integrity sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw==
- dependencies:
- lodash.unescape "4.0.1"
- semver "5.5.0"
-
-abab@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
- integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
-
-abort-controller@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
- integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==
- dependencies:
- event-target-shim "^5.0.0"
-
-absolute-path@^0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/absolute-path/-/absolute-path-0.0.0.tgz#a78762fbdadfb5297be99b15d35a785b2f095bf7"
- integrity sha1-p4di+9rftSl76ZsV01p4Wy8JW/c=
-
-accepts@~1.3.5, accepts@~1.3.7:
- version "1.3.7"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
- integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
- dependencies:
- mime-types "~2.1.24"
- negotiator "0.6.2"
-
-acorn-globals@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
- integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
- dependencies:
- acorn "^6.0.1"
- acorn-walk "^6.0.1"
-
-acorn-jsx@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384"
- integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==
-
-acorn-walk@^6.0.1:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
- integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
-
-acorn@^5.5.3:
- version "5.7.3"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
- integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
-
-acorn@^6.0.1:
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz#b659d2ffbafa24baf5db1cdbb2c94a983ecd2784"
- integrity sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==
-
-acorn@^7.1.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
- integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
-
-ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5:
- version "6.11.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz#c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9"
- integrity sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==
- dependencies:
- fast-deep-equal "^3.1.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-ansi-colors@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9"
- integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==
- dependencies:
- ansi-wrap "^0.1.0"
-
-ansi-cyan@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873"
- integrity sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=
- dependencies:
- ansi-wrap "0.1.0"
-
-ansi-escapes@^3.0.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
- integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
-
-ansi-escapes@^4.2.1:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz#a4ce2b33d6b214b7950d8595c212f12ac9cc569d"
- integrity sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg==
- dependencies:
- type-fest "^0.8.1"
-
-ansi-fragments@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e"
- integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==
- dependencies:
- colorette "^1.0.7"
- slice-ansi "^2.0.0"
- strip-ansi "^5.0.0"
-
-ansi-gray@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251"
- integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE=
- dependencies:
- ansi-wrap "0.1.0"
-
-ansi-red@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c"
- integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=
- dependencies:
- ansi-wrap "0.1.0"
-
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
-ansi-regex@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
- integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
-
-ansi-regex@^4.0.0, ansi-regex@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
- integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
-
-ansi-regex@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
- integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
-
-ansi-styles@^3.2.0, ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
-ansi-wrap@0.1.0, ansi-wrap@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
- integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768=
-
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-argparse@^1.0.7:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
- integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
- dependencies:
- sprintf-js "~1.0.2"
-
-arr-diff@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a"
- integrity sha1-aHwydYFjWI/vfeezb6vklesaOZo=
- dependencies:
- arr-flatten "^1.0.1"
- array-slice "^0.2.3"
-
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
- integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
-
-arr-flatten@^1.0.1, arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
- integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
-
-arr-union@^2.0.1:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d"
- integrity sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
- integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-
-array-equal@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
- integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
-
-array-filter@~0.0.0:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
- integrity sha1-fajPLiZijtcygDWB/SH2fKzS7uw=
-
-array-includes@^3.0.3:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
- integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0"
- is-string "^1.0.5"
-
-array-map@~0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
- integrity sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=
-
-array-reduce@~0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
- integrity sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=
-
-array-slice@^0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5"
- integrity sha1-3Tz7gO15c6dRF82sabC5nshhhvU=
-
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
- integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-
-art@^0.10.0:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/art/-/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2"
- integrity sha512-HXwbdofRTiJT6qZX/FnchtldzJjS3vkLJxQilc3Xj+ma2MXjY4UAyQ0ls1XZYVnDvVIBiFZbC6QsvtW86TD6tQ==
-
-asap@~2.0.3:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
- integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
-
-asn1@~0.2.3:
- version "0.2.4"
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
- integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==
- dependencies:
- safer-buffer "~2.1.0"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
- integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
- integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-
-astral-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
- integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
-
-async-limiter@~1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
- integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-
-async@^2.4.0:
- version "2.6.3"
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
- integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
- dependencies:
- lodash "^4.17.14"
-
-asynckit@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
- integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
-
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
- integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-
-aws-sign2@~0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
- integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
-
-aws4@^1.8.0:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e"
- integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
-
-babel-eslint@10.0.1:
- version "10.0.1"
- resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed"
- integrity sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@babel/parser" "^7.0.0"
- "@babel/traverse" "^7.0.0"
- "@babel/types" "^7.0.0"
- eslint-scope "3.7.1"
- eslint-visitor-keys "^1.0.0"
-
-babel-jest@^24.8.0, babel-jest@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54"
- integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==
- dependencies:
- "@jest/transform" "^24.9.0"
- "@jest/types" "^24.9.0"
- "@types/babel__core" "^7.1.0"
- babel-plugin-istanbul "^5.1.0"
- babel-preset-jest "^24.9.0"
- chalk "^2.4.2"
- slash "^2.0.0"
-
-babel-plugin-dynamic-import-node@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
- integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
- dependencies:
- object.assign "^4.1.0"
-
-babel-plugin-istanbul@^5.1.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854"
- integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- find-up "^3.0.0"
- istanbul-lib-instrument "^3.3.0"
- test-exclude "^5.2.3"
-
-babel-plugin-jest-hoist@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756"
- integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==
- dependencies:
- "@types/babel__traverse" "^7.0.6"
-
-babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
- version "7.0.0-beta.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf"
- integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==
-
-babel-preset-fbjs@^3.1.2, babel-preset-fbjs@^3.2.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541"
- integrity sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==
- dependencies:
- "@babel/plugin-proposal-class-properties" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
- "@babel/plugin-syntax-class-properties" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.0.0"
- "@babel/plugin-syntax-jsx" "^7.0.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
- "@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-block-scoped-functions" "^7.0.0"
- "@babel/plugin-transform-block-scoping" "^7.0.0"
- "@babel/plugin-transform-classes" "^7.0.0"
- "@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.0.0"
- "@babel/plugin-transform-flow-strip-types" "^7.0.0"
- "@babel/plugin-transform-for-of" "^7.0.0"
- "@babel/plugin-transform-function-name" "^7.0.0"
- "@babel/plugin-transform-literals" "^7.0.0"
- "@babel/plugin-transform-member-expression-literals" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/plugin-transform-object-super" "^7.0.0"
- "@babel/plugin-transform-parameters" "^7.0.0"
- "@babel/plugin-transform-property-literals" "^7.0.0"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-template-literals" "^7.0.0"
- babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0"
-
-babel-preset-jest@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc"
- integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==
- dependencies:
- "@babel/plugin-syntax-object-rest-spread" "^7.0.0"
- babel-plugin-jest-hoist "^24.9.0"
-
-balanced-match@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-
-base64-js@^1.1.2, base64-js@^1.2.3:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
- integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==
-
-base@^0.11.1:
- version "0.11.2"
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
- integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
- dependencies:
- cache-base "^1.0.1"
- class-utils "^0.3.5"
- component-emitter "^1.2.1"
- define-property "^1.0.0"
- isobject "^3.0.1"
- mixin-deep "^1.2.0"
- pascalcase "^0.1.1"
-
-basic-auth@~2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a"
- integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==
- dependencies:
- safe-buffer "5.1.2"
-
-bcrypt-pbkdf@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
- integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
- dependencies:
- tweetnacl "^0.14.3"
-
-big-integer@^1.6.44:
- version "1.6.48"
- resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.48.tgz#8fd88bd1632cba4a1c8c3e3d7159f08bb95b4b9e"
- integrity sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==
-
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
- dependencies:
- file-uri-to-path "1.0.0"
-
-bplist-creator@0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.8.tgz#56b2a6e79e9aec3fc33bf831d09347d73794e79c"
- integrity sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA==
- dependencies:
- stream-buffers "~2.2.0"
-
-bplist-parser@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
- integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==
- dependencies:
- big-integer "^1.6.44"
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-braces@^2.3.1:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
- integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
- dependencies:
- arr-flatten "^1.1.0"
- array-unique "^0.3.2"
- extend-shallow "^2.0.1"
- fill-range "^4.0.0"
- isobject "^3.0.1"
- repeat-element "^1.1.2"
- snapdragon "^0.8.1"
- snapdragon-node "^2.0.1"
- split-string "^3.0.2"
- to-regex "^3.0.1"
-
-browser-process-hrtime@^0.1.2:
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"
- integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==
-
-browser-resolve@^1.11.3:
- version "1.11.3"
- resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
- integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
- dependencies:
- resolve "1.1.7"
-
-bser@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
- integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
- dependencies:
- node-int64 "^0.4.0"
-
-buffer-crc32@^0.2.13:
- version "0.2.13"
- resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
- integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
-
-buffer-from@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
- integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
-
-bytes@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
- integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
- integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
- dependencies:
- collection-visit "^1.0.0"
- component-emitter "^1.2.1"
- get-value "^2.0.6"
- has-value "^1.0.0"
- isobject "^3.0.1"
- set-value "^2.0.0"
- to-object-path "^0.3.0"
- union-value "^1.0.0"
- unset-value "^1.0.0"
-
-caller-callsite@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
- dependencies:
- callsites "^2.0.0"
-
-caller-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
- dependencies:
- caller-callsite "^2.0.0"
-
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
-callsites@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
- integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-
-camelcase@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
- integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-
-camelcase@^5.0.0, camelcase@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
- integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-
-capture-exit@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
- integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
- dependencies:
- rsvp "^4.8.4"
-
-caseless@~0.12.0:
- version "0.12.0"
- resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
- integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
-
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chardet@^0.4.0:
- version "0.4.2"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
- integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=
-
-chardet@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
- integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
-
-ci-info@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
- integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
-
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
- integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
-
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
- dependencies:
- restore-cursor "^2.0.0"
-
-cli-cursor@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
- integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
- dependencies:
- restore-cursor "^3.1.0"
-
-cli-spinners@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77"
- integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==
-
-cli-width@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
- integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
-
-cliui@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
- integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=
- dependencies:
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
- wrap-ansi "^2.0.0"
-
-cliui@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49"
- integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==
- dependencies:
- string-width "^2.1.1"
- strip-ansi "^4.0.0"
- wrap-ansi "^2.0.0"
-
-cliui@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
- integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
- dependencies:
- string-width "^3.1.0"
- strip-ansi "^5.2.0"
- wrap-ansi "^5.1.0"
-
-clone@^1.0.2:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
- integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
-
-co@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
- integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-color-support@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
- integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
-
-colorette@^1.0.7:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.1.0.tgz#1f943e5a357fac10b4e0f5aaef3b14cdc1af6ec7"
- integrity sha512-6S062WDQUXi6hOfkO/sBPVwE5ASXY4G2+b4atvhJfSsuUUhIaUKlkjLe9692Ipyt5/a+IPF5aVTu3V5gvXq5cg==
-
-combined-stream@^1.0.6, combined-stream@~1.0.6:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
- integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
- dependencies:
- delayed-stream "~1.0.0"
-
-commander@^2.19.0:
- version "2.20.3"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
- integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
-
-commander@~2.13.0:
- version "2.13.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
- integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==
-
-commondir@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
- integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
- integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
-
-compressible@~2.0.16:
- version "2.0.18"
- resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
- integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
- dependencies:
- mime-db ">= 1.43.0 < 2"
-
-compression@^1.7.1:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
- integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
- dependencies:
- accepts "~1.3.5"
- bytes "3.0.0"
- compressible "~2.0.16"
- debug "2.6.9"
- on-headers "~1.0.2"
- safe-buffer "5.1.2"
- vary "~1.1.2"
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-concat-stream@^1.6.0:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
-connect@^3.6.5:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8"
- integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==
- dependencies:
- debug "2.6.9"
- finalhandler "1.1.2"
- parseurl "~1.3.3"
- utils-merge "1.0.1"
-
-convert-source-map@^1.4.0, convert-source-map@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
- integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
- dependencies:
- safe-buffer "~5.1.1"
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-core-js@^1.0.0:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
- integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
-
-core-js@^2.2.2, core-js@^2.4.1:
- version "2.6.11"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
- integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
-
-core-util-is@1.0.2, core-util-is@~1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
-cosmiconfig@^5.0.5, cosmiconfig@^5.1.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
- integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
- dependencies:
- import-fresh "^2.0.0"
- is-directory "^0.3.1"
- js-yaml "^3.13.1"
- parse-json "^4.0.0"
-
-create-react-class@^15.6.3:
- version "15.6.3"
- resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036"
- integrity sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==
- dependencies:
- fbjs "^0.8.9"
- loose-envify "^1.3.1"
- object-assign "^4.1.1"
-
-cross-spawn@^5.0.1, cross-spawn@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
- integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
- dependencies:
- lru-cache "^4.0.1"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-cross-spawn@^6.0.0, cross-spawn@^6.0.5:
- version "6.0.5"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
- integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
- dependencies:
- nice-try "^1.0.4"
- path-key "^2.0.1"
- semver "^5.5.0"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
- integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
-
-cssstyle@^1.0.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
- integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
- dependencies:
- cssom "0.3.x"
-
-dashdash@^1.12.0:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
- integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
- dependencies:
- assert-plus "^1.0.0"
-
-data-urls@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
- integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
- dependencies:
- abab "^2.0.0"
- whatwg-mimetype "^2.2.0"
- whatwg-url "^7.0.0"
-
-dayjs@^1.8.15:
- version "1.8.19"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.19.tgz#5117dc390d8f8e586d53891dbff3fa308f51abfe"
- integrity sha512-7kqOoj3oQSmqbvtvGFLU5iYqies+SqUiEGNT0UtUPPxcPYgY1BrkXR0Cq2R9HYSimBXN+xHkEN4Hi399W+Ovlg==
-
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
- version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
- integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
- dependencies:
- ms "2.0.0"
-
-debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
- integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
- dependencies:
- ms "^2.1.1"
-
-decamelize@^1.1.1, decamelize@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-
-decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
- integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-
-deep-is@~0.1.3:
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
- integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
-
-deepmerge@^3.2.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7"
- integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==
-
-defaults@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
- integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
- dependencies:
- clone "^1.0.2"
-
-define-properties@^1.1.2, define-properties@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
- dependencies:
- object-keys "^1.0.12"
-
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
- integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
-delayed-stream@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
- integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
-
-denodeify@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631"
- integrity sha1-OjYof1A05pnnV3kBBSwubJQlFjE=
-
-depd@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
-
-destroy@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
- integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-
-detect-newline@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
- integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
-
-diff-sequences@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5"
- integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==
-
-doctrine@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
- integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
- dependencies:
- esutils "^2.0.2"
-
-doctrine@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
- integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
- dependencies:
- esutils "^2.0.2"
-
-dom-walk@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018"
- integrity sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=
-
-domexception@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
- integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
- dependencies:
- webidl-conversions "^4.0.2"
-
-ecc-jsbn@~0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
- integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
- dependencies:
- jsbn "~0.1.0"
- safer-buffer "^2.1.0"
-
-ee-first@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
- integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-
-emoji-regex@^7.0.1:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
- integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
-
-emoji-regex@^8.0.0:
- version "8.0.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
- integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-
-encodeurl@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
- integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
-
-encoding@^0.1.11:
- version "0.1.12"
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
- integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=
- dependencies:
- iconv-lite "~0.4.13"
-
-end-of-stream@^1.1.0:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
- integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
- dependencies:
- once "^1.4.0"
-
-envinfo@^7.1.0:
- version "7.5.0"
- resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.5.0.tgz#91410bb6db262fb4f1409bd506e9ff57e91023f4"
- integrity sha512-jDgnJaF/Btomk+m3PZDTTCb5XIIIX3zYItnCRfF73zVgvinLoRomuhi75Y4su0PtQxWz4v66XnLLckyvyJTOIQ==
-
-error-ex@^1.2.0, error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
- dependencies:
- is-arrayish "^0.2.1"
-
-errorhandler@^1.5.0:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91"
- integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==
- dependencies:
- accepts "~1.3.7"
- escape-html "~1.0.3"
-
-es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2:
- version "1.17.4"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz#e3aedf19706b20e7c2594c35fc0d57605a79e184"
- integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==
- dependencies:
- es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- has "^1.0.3"
- has-symbols "^1.0.1"
- is-callable "^1.1.5"
- is-regex "^1.0.5"
- object-inspect "^1.7.0"
- object-keys "^1.1.1"
- object.assign "^4.1.0"
- string.prototype.trimleft "^2.1.1"
- string.prototype.trimright "^2.1.1"
-
-es-to-primitive@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
- integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
- dependencies:
- is-callable "^1.1.4"
- is-date-object "^1.0.1"
- is-symbol "^1.0.2"
-
-escape-html@~1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
- integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
-
-escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-escodegen@^1.9.1:
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.13.0.tgz#c7adf9bd3f3cc675bb752f202f79a720189cab29"
- integrity sha512-eYk2dCkxR07DsHA/X2hRBj0CFAZeri/LyDMc0C8JT1Hqi6JnVpMhJ7XFITbb0+yZS3lVkaPL2oCkZ3AVmeVbMw==
- dependencies:
- esprima "^4.0.1"
- estraverse "^4.2.0"
- esutils "^2.0.2"
- optionator "^0.8.1"
- optionalDependencies:
- source-map "~0.6.1"
-
-eslint-plugin-eslint-comments@^3.1.1:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.1.2.tgz#4ef6c488dbe06aa1627fea107b3e5d059fc8a395"
- integrity sha512-QexaqrNeteFfRTad96W+Vi4Zj1KFbkHHNMMaHZEYcovKav6gdomyGzaxSDSL3GoIyUOo078wRAdYlu1caiauIQ==
- dependencies:
- escape-string-regexp "^1.0.5"
- ignore "^5.0.5"
-
-eslint-plugin-flowtype@2.50.3:
- version "2.50.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f"
- integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==
- dependencies:
- lodash "^4.17.10"
-
-eslint-plugin-jest@22.4.1:
- version "22.4.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c"
- integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg==
-
-eslint-plugin-prettier@2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.2.tgz#71998c60aedfa2141f7bfcbf9d1c459bf98b4fad"
- integrity sha512-tGek5clmW5swrAx1mdPYM8oThrBE83ePh7LeseZHBWfHVGrHPhKn7Y5zgRMbU/9D5Td9K4CEmUPjGxA7iw98Og==
- dependencies:
- fast-diff "^1.1.1"
- jest-docblock "^21.0.0"
-
-eslint-plugin-react-hooks@^1.5.1:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04"
- integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==
-
-eslint-plugin-react-native-globals@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2"
- integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==
-
-eslint-plugin-react-native@3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.6.0.tgz#7cad3b7c6159df6d26fe3252c6c5417a17f27b4b"
- integrity sha512-BEQcHZ06hZSBYWFVuNEq0xuui5VEsWpHDsZGBtfadHfCRqRMUrkYPgdDb3bpc60qShHE83kqIv59uKdinEg91Q==
- dependencies:
- eslint-plugin-react-native-globals "^0.1.1"
-
-eslint-plugin-react@7.12.4:
- version "7.12.4"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.4.tgz#b1ecf26479d61aee650da612e425c53a99f48c8c"
- integrity sha512-1puHJkXJY+oS1t467MjbqjvX53uQ05HXwjqDgdbGBqf5j9eeydI54G3KwiJmWciQ0HTBacIKw2jgwSBSH3yfgQ==
- dependencies:
- array-includes "^3.0.3"
- doctrine "^2.1.0"
- has "^1.0.3"
- jsx-ast-utils "^2.0.1"
- object.fromentries "^2.0.0"
- prop-types "^15.6.2"
- resolve "^1.9.0"
-
-eslint-scope@3.7.1:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
- integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-scope@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-scope@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9"
- integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-utils@^1.3.1, eslint-utils@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
- integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
- dependencies:
- eslint-visitor-keys "^1.1.0"
-
-eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
- integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
-
-eslint@^6.0.1:
- version "6.8.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
- integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- ajv "^6.10.0"
- chalk "^2.1.0"
- cross-spawn "^6.0.5"
- debug "^4.0.1"
- doctrine "^3.0.0"
- eslint-scope "^5.0.0"
- eslint-utils "^1.4.3"
- eslint-visitor-keys "^1.1.0"
- espree "^6.1.2"
- esquery "^1.0.1"
- esutils "^2.0.2"
- file-entry-cache "^5.0.1"
- functional-red-black-tree "^1.0.1"
- glob-parent "^5.0.0"
- globals "^12.1.0"
- ignore "^4.0.6"
- import-fresh "^3.0.0"
- imurmurhash "^0.1.4"
- inquirer "^7.0.0"
- is-glob "^4.0.0"
- js-yaml "^3.13.1"
- json-stable-stringify-without-jsonify "^1.0.1"
- levn "^0.3.0"
- lodash "^4.17.14"
- minimatch "^3.0.4"
- mkdirp "^0.5.1"
- natural-compare "^1.4.0"
- optionator "^0.8.3"
- progress "^2.0.0"
- regexpp "^2.0.1"
- semver "^6.1.2"
- strip-ansi "^5.2.0"
- strip-json-comments "^3.0.1"
- table "^5.2.3"
- text-table "^0.2.0"
- v8-compile-cache "^2.0.3"
-
-espree@^6.1.2:
- version "6.1.2"
- resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.2.tgz#6c272650932b4f91c3714e5e7b5f5e2ecf47262d"
- integrity sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA==
- dependencies:
- acorn "^7.1.0"
- acorn-jsx "^5.1.0"
- eslint-visitor-keys "^1.1.0"
-
-esprima@^4.0.0, esprima@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-
-esquery@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
- integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==
- dependencies:
- estraverse "^4.0.0"
-
-esrecurse@^4.1.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
- integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==
- dependencies:
- estraverse "^4.1.0"
-
-estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
- integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
-
-esutils@^2.0.0, esutils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
- integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
-etag@~1.8.1:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
- integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
-
-event-target-shim@^5.0.0, event-target-shim@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
- integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
-
-eventemitter3@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
- integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
-
-exec-sh@^0.3.2:
- version "0.3.4"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5"
- integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
-
-execa@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
- integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
- dependencies:
- cross-spawn "^5.0.1"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
- integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^4.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-exit@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
- integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
-
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
- dependencies:
- debug "^2.3.3"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- posix-character-classes "^0.1.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-expect@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca"
- integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==
- dependencies:
- "@jest/types" "^24.9.0"
- ansi-styles "^3.2.0"
- jest-get-type "^24.9.0"
- jest-matcher-utils "^24.9.0"
- jest-message-util "^24.9.0"
- jest-regex-util "^24.9.0"
-
-extend-shallow@^1.1.2:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071"
- integrity sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=
- dependencies:
- kind-of "^1.1.0"
-
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extend@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
- integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-
-external-editor@^2.0.4:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
- integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==
- dependencies:
- chardet "^0.4.0"
- iconv-lite "^0.4.17"
- tmp "^0.0.33"
-
-external-editor@^3.0.3:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
- integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
- dependencies:
- chardet "^0.7.0"
- iconv-lite "^0.4.24"
- tmp "^0.0.33"
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
- integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
- dependencies:
- array-unique "^0.3.2"
- define-property "^1.0.0"
- expand-brackets "^2.1.4"
- extend-shallow "^2.0.1"
- fragment-cache "^0.2.1"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-extsprintf@1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
- integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
-
-extsprintf@^1.2.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
- integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
-
-fancy-log@^1.3.2:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7"
- integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==
- dependencies:
- ansi-gray "^0.1.1"
- color-support "^1.1.3"
- parse-node-version "^1.0.0"
- time-stamp "^1.0.0"
-
-fast-deep-equal@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
- integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
-
-fast-diff@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
- integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
-
-fast-json-stable-stringify@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
- integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-
-fast-levenshtein@~2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
- integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
-
-fb-watchman@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
- integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
- dependencies:
- bser "2.1.1"
-
-fbjs-css-vars@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8"
- integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
-
-fbjs-scripts@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-1.2.0.tgz#069a0c0634242d10031c6460ef1fccefcdae8b27"
- integrity sha512-5krZ8T0Bf8uky0abPoCLrfa7Orxd8UH4Qq8hRUF2RZYNMu+FmEOrBc7Ib3YVONmxTXTlLAvyrrdrVmksDb2OqQ==
- dependencies:
- "@babel/core" "^7.0.0"
- ansi-colors "^1.0.1"
- babel-preset-fbjs "^3.2.0"
- core-js "^2.4.1"
- cross-spawn "^5.1.0"
- fancy-log "^1.3.2"
- object-assign "^4.0.1"
- plugin-error "^0.1.2"
- semver "^5.1.0"
- through2 "^2.0.0"
-
-fbjs@^0.8.9:
- version "0.8.17"
- resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
- integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=
- dependencies:
- core-js "^1.0.0"
- isomorphic-fetch "^2.1.1"
- loose-envify "^1.0.0"
- object-assign "^4.1.0"
- promise "^7.1.1"
- setimmediate "^1.0.5"
- ua-parser-js "^0.7.18"
-
-fbjs@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-1.0.0.tgz#52c215e0883a3c86af2a7a776ed51525ae8e0a5a"
- integrity sha512-MUgcMEJaFhCaF1QtWGnmq9ZDRAzECTCRAF7O6UZIlAlkTs1SasiX9aP0Iw7wfD2mJ7wDTNfg2w7u5fSCwJk1OA==
- dependencies:
- core-js "^2.4.1"
- fbjs-css-vars "^1.0.0"
- isomorphic-fetch "^2.1.1"
- loose-envify "^1.0.0"
- object-assign "^4.1.0"
- promise "^7.1.1"
- setimmediate "^1.0.5"
- ua-parser-js "^0.7.18"
-
-figures@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
- integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
- dependencies:
- escape-string-regexp "^1.0.5"
-
-figures@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-3.1.0.tgz#4b198dd07d8d71530642864af2d45dd9e459c4ec"
- integrity sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==
- dependencies:
- escape-string-regexp "^1.0.5"
-
-file-entry-cache@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
- integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
- dependencies:
- flat-cache "^2.0.1"
-
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
-finalhandler@1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
- integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
- dependencies:
- debug "2.6.9"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- on-finished "~2.3.0"
- parseurl "~1.3.3"
- statuses "~1.5.0"
- unpipe "~1.0.0"
-
-find-cache-dir@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
-find-up@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
-find-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
- integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
- dependencies:
- locate-path "^3.0.0"
-
-flat-cache@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
- integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
- dependencies:
- flatted "^2.0.0"
- rimraf "2.6.3"
- write "1.0.3"
-
-flatted@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08"
- integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==
-
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-forever-agent@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
- integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
-
-form-data@~2.3.2:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
- integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.6"
- mime-types "^2.1.12"
-
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
-fresh@0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
- integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-
-fs-extra@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950"
- integrity sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^2.1.0"
- klaw "^1.0.0"
-
-fs-extra@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
- integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-fsevents@^1.2.7:
- version "1.2.11"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3"
- integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-
-functional-red-black-tree@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
- integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
-
-gensync@^1.0.0-beta.1:
- version "1.0.0-beta.1"
- resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
- integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
-
-get-caller-file@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
- integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
-
-get-caller-file@^2.0.1:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
- integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-
-get-stream@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
- integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
-
-get-stream@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
- integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
- dependencies:
- pump "^3.0.0"
-
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
-getpass@^0.1.1:
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
- integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
- dependencies:
- assert-plus "^1.0.0"
-
-glob-parent@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
- integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
- dependencies:
- is-glob "^4.0.1"
-
-glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
- version "7.1.6"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
- integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-global@^4.3.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
- integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
- dependencies:
- min-document "^2.19.0"
- process "^0.11.10"
-
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-
-globals@^12.1.0:
- version "12.3.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13"
- integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==
- dependencies:
- type-fest "^0.8.1"
-
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
- integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
-
-growly@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
- integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
-
-har-schema@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
- integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
-
-har-validator@~5.1.0:
- version "5.1.3"
- resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080"
- integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==
- dependencies:
- ajv "^6.5.5"
- har-schema "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-symbols@^1.0.0, has-symbols@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
- integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
-
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
-
-hermesvm@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/hermesvm/-/hermesvm-0.1.1.tgz#bd1df92b4dc504e261c23df34864daf24b844d03"
- integrity sha512-EosSDeUqTTGvlc9vQiy5Y/9GBlucEyo6lYuxg/FnukHCD/CP3NYeDAGV54TyZ19FgSqMEoPgOH9cyxvv8epQ1g==
-
-hosted-git-info@^2.1.4:
- version "2.8.5"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
- integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==
-
-html-encoding-sniffer@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
- integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
- dependencies:
- whatwg-encoding "^1.0.1"
-
-html-escaper@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491"
- integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==
-
-http-errors@~1.7.2:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
- integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.4"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-signature@~1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
- integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
- dependencies:
- assert-plus "^1.0.0"
- jsprim "^1.2.2"
- sshpk "^1.7.0"
-
-iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
-ignore@^4.0.6:
- version "4.0.6"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
- integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
-
-ignore@^5.0.5:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
- integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
-
-image-size@^0.6.0:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.6.3.tgz#e7e5c65bb534bd7cdcedd6cb5166272a85f75fb2"
- integrity sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==
-
-import-fresh@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
- dependencies:
- caller-path "^2.0.0"
- resolve-from "^3.0.0"
-
-import-fresh@^3.0.0:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
- integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
- dependencies:
- parent-module "^1.0.0"
- resolve-from "^4.0.0"
-
-import-local@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
- integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
- dependencies:
- pkg-dir "^3.0.0"
- resolve-cwd "^2.0.0"
-
-imurmurhash@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
- integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.3:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-
-inquirer@^3.0.6:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
- integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==
- dependencies:
- ansi-escapes "^3.0.0"
- chalk "^2.0.0"
- cli-cursor "^2.1.0"
- cli-width "^2.0.0"
- external-editor "^2.0.4"
- figures "^2.0.0"
- lodash "^4.3.0"
- mute-stream "0.0.7"
- run-async "^2.2.0"
- rx-lite "^4.0.8"
- rx-lite-aggregates "^4.0.8"
- string-width "^2.1.0"
- strip-ansi "^4.0.0"
- through "^2.3.6"
-
-inquirer@^7.0.0:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.3.tgz#f9b4cd2dff58b9f73e8d43759436ace15bed4567"
- integrity sha512-+OiOVeVydu4hnCGLCSX+wedovR/Yzskv9BFqUNNKq9uU2qg7LCcCo3R86S2E7WLo0y/x2pnEZfZe1CoYnORUAw==
- dependencies:
- ansi-escapes "^4.2.1"
- chalk "^2.4.2"
- cli-cursor "^3.1.0"
- cli-width "^2.0.0"
- external-editor "^3.0.3"
- figures "^3.0.0"
- lodash "^4.17.15"
- mute-stream "0.0.8"
- run-async "^2.2.0"
- rxjs "^6.5.3"
- string-width "^4.1.0"
- strip-ansi "^5.1.0"
- through "^2.3.6"
-
-invariant@^2.2.4:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
- integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
- dependencies:
- loose-envify "^1.0.0"
-
-invert-kv@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
- integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY=
-
-invert-kv@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
- integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
- integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-buffer@^1.1.5:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
- integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-
-is-callable@^1.1.4, is-callable@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
- integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
-
-is-ci@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
- integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
- dependencies:
- ci-info "^2.0.0"
-
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
- integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
- dependencies:
- kind-of "^6.0.0"
-
-is-date-object@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
- integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
-
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
- integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
- integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
-is-directory@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
-
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
- integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
- dependencies:
- is-plain-object "^2.0.4"
-
-is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
- dependencies:
- number-is-nan "^1.0.0"
-
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
- integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-
-is-fullwidth-code-point@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
- integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
-
-is-generator-fn@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
- integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
-
-is-glob@^4.0.0, is-glob@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
- integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
- dependencies:
- is-extglob "^2.1.1"
-
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
-is-plain-object@^2.0.3, is-plain-object@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
- integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
- dependencies:
- isobject "^3.0.1"
-
-is-promise@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
- integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
-
-is-regex@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
- integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
- dependencies:
- has "^1.0.3"
-
-is-stream@^1.0.1, is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-string@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
- integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
-
-is-symbol@^1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
- integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
- dependencies:
- has-symbols "^1.0.1"
-
-is-typedarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
- integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-
-isarray@1.0.0, isarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-isomorphic-fetch@^2.1.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
- integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=
- dependencies:
- node-fetch "^1.0.1"
- whatwg-fetch ">=0.10.0"
-
-isstream@~0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
- integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-
-istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49"
- integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==
-
-istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630"
- integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==
- dependencies:
- "@babel/generator" "^7.4.0"
- "@babel/parser" "^7.4.3"
- "@babel/template" "^7.4.0"
- "@babel/traverse" "^7.4.3"
- "@babel/types" "^7.4.0"
- istanbul-lib-coverage "^2.0.5"
- semver "^6.0.0"
-
-istanbul-lib-report@^2.0.4:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33"
- integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==
- dependencies:
- istanbul-lib-coverage "^2.0.5"
- make-dir "^2.1.0"
- supports-color "^6.1.0"
-
-istanbul-lib-source-maps@^3.0.1:
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8"
- integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==
- dependencies:
- debug "^4.1.1"
- istanbul-lib-coverage "^2.0.5"
- make-dir "^2.1.0"
- rimraf "^2.6.3"
- source-map "^0.6.1"
-
-istanbul-reports@^2.2.6:
- version "2.2.7"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931"
- integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==
- dependencies:
- html-escaper "^2.0.0"
-
-jest-changed-files@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039"
- integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==
- dependencies:
- "@jest/types" "^24.9.0"
- execa "^1.0.0"
- throat "^4.0.0"
-
-jest-cli@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af"
- integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==
- dependencies:
- "@jest/core" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- chalk "^2.0.1"
- exit "^0.1.2"
- import-local "^2.0.0"
- is-ci "^2.0.0"
- jest-config "^24.9.0"
- jest-util "^24.9.0"
- jest-validate "^24.9.0"
- prompts "^2.0.1"
- realpath-native "^1.1.0"
- yargs "^13.3.0"
-
-jest-config@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5"
- integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/test-sequencer" "^24.9.0"
- "@jest/types" "^24.9.0"
- babel-jest "^24.9.0"
- chalk "^2.0.1"
- glob "^7.1.1"
- jest-environment-jsdom "^24.9.0"
- jest-environment-node "^24.9.0"
- jest-get-type "^24.9.0"
- jest-jasmine2 "^24.9.0"
- jest-regex-util "^24.3.0"
- jest-resolve "^24.9.0"
- jest-util "^24.9.0"
- jest-validate "^24.9.0"
- micromatch "^3.1.10"
- pretty-format "^24.9.0"
- realpath-native "^1.1.0"
-
-jest-diff@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da"
- integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==
- dependencies:
- chalk "^2.0.1"
- diff-sequences "^24.9.0"
- jest-get-type "^24.9.0"
- pretty-format "^24.9.0"
-
-jest-docblock@^21.0.0:
- version "21.2.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
- integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==
-
-jest-docblock@^24.3.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2"
- integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==
- dependencies:
- detect-newline "^2.1.0"
-
-jest-each@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05"
- integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==
- dependencies:
- "@jest/types" "^24.9.0"
- chalk "^2.0.1"
- jest-get-type "^24.9.0"
- jest-util "^24.9.0"
- pretty-format "^24.9.0"
-
-jest-environment-jsdom@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b"
- integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==
- dependencies:
- "@jest/environment" "^24.9.0"
- "@jest/fake-timers" "^24.9.0"
- "@jest/types" "^24.9.0"
- jest-mock "^24.9.0"
- jest-util "^24.9.0"
- jsdom "^11.5.1"
-
-jest-environment-node@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3"
- integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==
- dependencies:
- "@jest/environment" "^24.9.0"
- "@jest/fake-timers" "^24.9.0"
- "@jest/types" "^24.9.0"
- jest-mock "^24.9.0"
- jest-util "^24.9.0"
-
-jest-get-type@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e"
- integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==
-
-jest-haste-map@^24.7.1, jest-haste-map@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d"
- integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==
- dependencies:
- "@jest/types" "^24.9.0"
- anymatch "^2.0.0"
- fb-watchman "^2.0.0"
- graceful-fs "^4.1.15"
- invariant "^2.2.4"
- jest-serializer "^24.9.0"
- jest-util "^24.9.0"
- jest-worker "^24.9.0"
- micromatch "^3.1.10"
- sane "^4.0.3"
- walker "^1.0.7"
- optionalDependencies:
- fsevents "^1.2.7"
-
-jest-jasmine2@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0"
- integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==
- dependencies:
- "@babel/traverse" "^7.1.0"
- "@jest/environment" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- chalk "^2.0.1"
- co "^4.6.0"
- expect "^24.9.0"
- is-generator-fn "^2.0.0"
- jest-each "^24.9.0"
- jest-matcher-utils "^24.9.0"
- jest-message-util "^24.9.0"
- jest-runtime "^24.9.0"
- jest-snapshot "^24.9.0"
- jest-util "^24.9.0"
- pretty-format "^24.9.0"
- throat "^4.0.0"
-
-jest-leak-detector@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a"
- integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==
- dependencies:
- jest-get-type "^24.9.0"
- pretty-format "^24.9.0"
-
-jest-matcher-utils@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073"
- integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==
- dependencies:
- chalk "^2.0.1"
- jest-diff "^24.9.0"
- jest-get-type "^24.9.0"
- pretty-format "^24.9.0"
-
-jest-message-util@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3"
- integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==
- dependencies:
- "@babel/code-frame" "^7.0.0"
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- "@types/stack-utils" "^1.0.1"
- chalk "^2.0.1"
- micromatch "^3.1.10"
- slash "^2.0.0"
- stack-utils "^1.0.1"
-
-jest-mock@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6"
- integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==
- dependencies:
- "@jest/types" "^24.9.0"
-
-jest-pnp-resolver@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a"
- integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==
-
-jest-regex-util@^24.3.0, jest-regex-util@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636"
- integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==
-
-jest-resolve-dependencies@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab"
- integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==
- dependencies:
- "@jest/types" "^24.9.0"
- jest-regex-util "^24.3.0"
- jest-snapshot "^24.9.0"
-
-jest-resolve@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321"
- integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==
- dependencies:
- "@jest/types" "^24.9.0"
- browser-resolve "^1.11.3"
- chalk "^2.0.1"
- jest-pnp-resolver "^1.2.1"
- realpath-native "^1.1.0"
-
-jest-runner@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42"
- integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==
- dependencies:
- "@jest/console" "^24.7.1"
- "@jest/environment" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- chalk "^2.4.2"
- exit "^0.1.2"
- graceful-fs "^4.1.15"
- jest-config "^24.9.0"
- jest-docblock "^24.3.0"
- jest-haste-map "^24.9.0"
- jest-jasmine2 "^24.9.0"
- jest-leak-detector "^24.9.0"
- jest-message-util "^24.9.0"
- jest-resolve "^24.9.0"
- jest-runtime "^24.9.0"
- jest-util "^24.9.0"
- jest-worker "^24.6.0"
- source-map-support "^0.5.6"
- throat "^4.0.0"
-
-jest-runtime@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac"
- integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==
- dependencies:
- "@jest/console" "^24.7.1"
- "@jest/environment" "^24.9.0"
- "@jest/source-map" "^24.3.0"
- "@jest/transform" "^24.9.0"
- "@jest/types" "^24.9.0"
- "@types/yargs" "^13.0.0"
- chalk "^2.0.1"
- exit "^0.1.2"
- glob "^7.1.3"
- graceful-fs "^4.1.15"
- jest-config "^24.9.0"
- jest-haste-map "^24.9.0"
- jest-message-util "^24.9.0"
- jest-mock "^24.9.0"
- jest-regex-util "^24.3.0"
- jest-resolve "^24.9.0"
- jest-snapshot "^24.9.0"
- jest-util "^24.9.0"
- jest-validate "^24.9.0"
- realpath-native "^1.1.0"
- slash "^2.0.0"
- strip-bom "^3.0.0"
- yargs "^13.3.0"
-
-jest-serializer@^24.4.0, jest-serializer@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73"
- integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==
-
-jest-snapshot@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba"
- integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==
- dependencies:
- "@babel/types" "^7.0.0"
- "@jest/types" "^24.9.0"
- chalk "^2.0.1"
- expect "^24.9.0"
- jest-diff "^24.9.0"
- jest-get-type "^24.9.0"
- jest-matcher-utils "^24.9.0"
- jest-message-util "^24.9.0"
- jest-resolve "^24.9.0"
- mkdirp "^0.5.1"
- natural-compare "^1.4.0"
- pretty-format "^24.9.0"
- semver "^6.2.0"
-
-jest-util@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162"
- integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==
- dependencies:
- "@jest/console" "^24.9.0"
- "@jest/fake-timers" "^24.9.0"
- "@jest/source-map" "^24.9.0"
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- callsites "^3.0.0"
- chalk "^2.0.1"
- graceful-fs "^4.1.15"
- is-ci "^2.0.0"
- mkdirp "^0.5.1"
- slash "^2.0.0"
- source-map "^0.6.0"
-
-jest-validate@^24.7.0, jest-validate@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab"
- integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==
- dependencies:
- "@jest/types" "^24.9.0"
- camelcase "^5.3.1"
- chalk "^2.0.1"
- jest-get-type "^24.9.0"
- leven "^3.1.0"
- pretty-format "^24.9.0"
-
-jest-watcher@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b"
- integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==
- dependencies:
- "@jest/test-result" "^24.9.0"
- "@jest/types" "^24.9.0"
- "@types/yargs" "^13.0.0"
- ansi-escapes "^3.0.0"
- chalk "^2.0.1"
- jest-util "^24.9.0"
- string-length "^2.0.0"
-
-jest-worker@^24.6.0, jest-worker@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
- integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
- dependencies:
- merge-stream "^2.0.0"
- supports-color "^6.1.0"
-
-jest@^24.8.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171"
- integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==
- dependencies:
- import-local "^2.0.0"
- jest-cli "^24.9.0"
-
-jetifier@^1.6.2:
- version "1.6.5"
- resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.5.tgz#ea87324a4230bef20a9651178ecab978ee54a8cb"
- integrity sha512-T7yzBSu9PR+DqjYt+I0KVO1XTb1QhAfHnXV5Nd3xpbXM6Xg4e3vP60Q4qkNU8Fh6PHC2PivPUNN3rY7G2MxcDQ==
-
-"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-js-yaml@^3.13.1:
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
- integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
- dependencies:
- argparse "^1.0.7"
- esprima "^4.0.0"
-
-jsbn@~0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
- integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-
-jsc-android@245459.0.0:
- version "245459.0.0"
- resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-245459.0.0.tgz#e584258dd0b04c9159a27fb104cd5d491fd202c9"
- integrity sha512-wkjURqwaB1daNkDi2OYYbsLnIdC/lUM2nPXQKRs5pqEU9chDg435bjvo+LSaHotDENygHQDHe+ntUkkw2gwMtg==
-
-jsdom@^11.5.1:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
- integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==
- dependencies:
- abab "^2.0.0"
- acorn "^5.5.3"
- acorn-globals "^4.1.0"
- array-equal "^1.0.0"
- cssom ">= 0.3.2 < 0.4.0"
- cssstyle "^1.0.0"
- data-urls "^1.0.0"
- domexception "^1.0.1"
- escodegen "^1.9.1"
- html-encoding-sniffer "^1.0.2"
- left-pad "^1.3.0"
- nwsapi "^2.0.7"
- parse5 "4.0.0"
- pn "^1.1.0"
- request "^2.87.0"
- request-promise-native "^1.0.5"
- sax "^1.2.4"
- symbol-tree "^3.2.2"
- tough-cookie "^2.3.4"
- w3c-hr-time "^1.0.1"
- webidl-conversions "^4.0.2"
- whatwg-encoding "^1.0.3"
- whatwg-mimetype "^2.1.0"
- whatwg-url "^6.4.1"
- ws "^5.2.0"
- xml-name-validator "^3.0.0"
-
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-jsesc@~0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
- integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-
-json-parse-better-errors@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
- integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-
-json-schema-traverse@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
- integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
-
-json-schema@0.2.3:
- version "0.2.3"
- resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
- integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
-
-json-stable-stringify-without-jsonify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
- integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
-
-json-stable-stringify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
- integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
- dependencies:
- jsonify "~0.0.0"
-
-json-stringify-safe@~5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
- integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-
-json5@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6"
- integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==
- dependencies:
- minimist "^1.2.0"
-
-jsonfile@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
- integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonfile@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
- integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsonify@~0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
- integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
-
-jsprim@^1.2.2:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
- integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
- dependencies:
- assert-plus "1.0.0"
- extsprintf "1.3.0"
- json-schema "0.2.3"
- verror "1.10.0"
-
-jsx-ast-utils@^2.0.1:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
- integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
- dependencies:
- array-includes "^3.0.3"
- object.assign "^4.1.0"
-
-kind-of@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44"
- integrity sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
- integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
-
-kind-of@^6.0.0, kind-of@^6.0.2:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
- integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-
-klaw@^1.0.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
- integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
- optionalDependencies:
- graceful-fs "^4.1.9"
-
-kleur@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
- integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-
-lcid@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
- integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=
- dependencies:
- invert-kv "^1.0.0"
-
-lcid@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf"
- integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==
- dependencies:
- invert-kv "^2.0.0"
-
-left-pad@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
- integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
-
-leven@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
- integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-
-levn@^0.3.0, levn@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
- integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
- dependencies:
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
-
-load-json-file@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
- integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^2.2.0"
- pify "^2.0.0"
- strip-bom "^3.0.0"
-
-load-json-file@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
- integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^4.0.0"
- pify "^3.0.0"
- strip-bom "^3.0.0"
-
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
-locate-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
- integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
- dependencies:
- p-locate "^3.0.0"
- path-exists "^3.0.0"
-
-lodash.sortby@^4.7.0:
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
- integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
-
-lodash.throttle@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
- integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
-
-lodash.unescape@4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
- integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=
-
-lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
- version "4.17.15"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
- integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
-
-log-symbols@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
- integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
- dependencies:
- chalk "^2.0.1"
-
-logkitty@^0.6.0:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.6.1.tgz#fe29209669d261539cbd6bb998a136fc92a1a05c"
- integrity sha512-cHuXN8qUZuzX/7kB6VyS7kB4xyD24e8gyHXIFNhIv+fjW3P+jEXNUhj0o/7qWJtv7UZpbnPgUqzu/AZQ8RAqxQ==
- dependencies:
- ansi-fragments "^0.2.1"
- dayjs "^1.8.15"
- yargs "^12.0.5"
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
- integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
- dependencies:
- js-tokens "^3.0.0 || ^4.0.0"
-
-lru-cache@^4.0.1:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
- integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
- dependencies:
- pseudomap "^1.0.2"
- yallist "^2.1.2"
-
-make-dir@^2.0.0, make-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
- integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
-
-makeerror@1.0.x:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
- integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
- dependencies:
- tmpl "1.0.x"
-
-map-age-cleaner@^0.1.1:
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
- integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==
- dependencies:
- p-defer "^1.0.0"
-
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-mem@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
- integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=
- dependencies:
- mimic-fn "^1.0.0"
-
-mem@^4.0.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178"
- integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==
- dependencies:
- map-age-cleaner "^0.1.1"
- mimic-fn "^2.0.0"
- p-is-promise "^2.0.0"
-
-merge-stream@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
- integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=
- dependencies:
- readable-stream "^2.0.1"
-
-merge-stream@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
- integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
-
-metro-babel-register@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.54.1.tgz#7d2bfe444b1ccef8de99aedc7d9330891d806076"
- integrity sha512-j3VydgncUG8HP6AZala6GTIt3V01nptodnnOke3JMYLqgk8EJ1LOVOdotK9pXi80o7EmmNKFs/LyyH8z+uAJzQ==
- dependencies:
- "@babel/core" "^7.0.0"
- "@babel/plugin-proposal-class-properties" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.0.0"
- "@babel/plugin-transform-async-to-generator" "^7.0.0"
- "@babel/plugin-transform-flow-strip-types" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/register" "^7.0.0"
- core-js "^2.2.2"
- escape-string-regexp "^1.0.5"
-
-metro-babel-transformer@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.54.1.tgz#371ffa2d1118b22cc9e40b3c3ea6738c49dae9dc"
- integrity sha512-2aiAnuYBdcLV1VINb8ENAA4keIaJIepHgR9+iRvIde+9GSjKnexqx4nNmJN392285gRDp1fVZ7uY0uQawK/A5g==
- dependencies:
- "@babel/core" "^7.0.0"
-
-metro-babel7-plugin-react-transform@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-babel7-plugin-react-transform/-/metro-babel7-plugin-react-transform-0.54.1.tgz#5335b810284789724886dc483d5bde9c149a1996"
- integrity sha512-jWm5myuMoZAOhoPsa8ItfDxdTcOzKhTTzzhFlbZnRamE7i9qybeMdrZt8KHQpF7i2p/mKzE9Yhf4ouOz5K/jHg==
- dependencies:
- "@babel/helper-module-imports" "^7.0.0"
-
-metro-cache@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.54.1.tgz#2e9017cbd11106837b8c385c9eb8c8175469a8c1"
- integrity sha512-RxCFoNcANHXZYi4MIQNnqh68gUnC3bMpzCFJY5pBoqqdrkkn8ibYglBweA0/DW7hx1OZTJWelwS1Dp8xxmE2CA==
- dependencies:
- jest-serializer "^24.4.0"
- metro-core "0.54.1"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
-
-metro-config@0.54.1, metro-config@^0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.54.1.tgz#808b4e17625d9f4e9afa34232778fdf8e63cc8dd"
- integrity sha512-FpxrA+63rGkPGvGI653dvuSreJzU+eOTILItVnnhmqwn2SAK5V00N/qGTOIJe2YIuWEFXwCzw9lXmANrXbwuGg==
- dependencies:
- cosmiconfig "^5.0.5"
- jest-validate "^24.7.0"
- metro "0.54.1"
- metro-cache "0.54.1"
- metro-core "0.54.1"
- pretty-format "^24.7.0"
-
-metro-core@0.54.1, metro-core@^0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.54.1.tgz#17f6ecc167918da8819d4af5726349e55714954b"
- integrity sha512-8oz3Ck7QFBzW9dG9tKFhrXHKPu2Ajx3R7eatf61Gl6Jf/tF7PNouv3wHxPsJW3oXDFiwKLszd89+OgleTGkB5g==
- dependencies:
- jest-haste-map "^24.7.1"
- lodash.throttle "^4.1.1"
- metro-resolver "0.54.1"
- wordwrap "^1.0.0"
-
-metro-inspector-proxy@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.54.1.tgz#0ef48ee3feb11c6da47aa100151a9bf2a7c358ee"
- integrity sha512-sf6kNu7PgFW6U+hU7YGZfbAUKAPVvCJhY8YVu/A1RMKH9nNULrCo+jlWh0gWgmFfWRQiAPCElevROg+5somk8A==
- dependencies:
- connect "^3.6.5"
- debug "^2.2.0"
- rxjs "^5.4.3"
- ws "^1.1.5"
- yargs "^9.0.0"
-
-metro-minify-uglify@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.54.1.tgz#54ed1cb349245ce82dba8cc662bbf69fbca142c3"
- integrity sha512-z+pOPna/8IxD4OhjW6Xo1mV2EszgqqQHqBm1FdmtdF6IpWkQp33qpDBNEi9NGZTOr7pp2bvcxZnvNJdC2lrK9Q==
- dependencies:
- uglify-es "^3.1.9"
-
-metro-react-native-babel-preset@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.54.1.tgz#b8f03865c381841d7f8912e7ba46804ea3a928b8"
- integrity sha512-Hfr32+u5yYl3qhYQJU8NQ26g4kQlc3yFMg7keVR/3H8rwBIbFqXgsKt8oe0dOrv7WvrMqBHhDtVdU9ls3sSq8g==
- dependencies:
- "@babel/plugin-proposal-class-properties" "^7.0.0"
- "@babel/plugin-proposal-export-default-from" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.0.0"
- "@babel/plugin-syntax-dynamic-import" "^7.0.0"
- "@babel/plugin-syntax-export-default-from" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.2.0"
- "@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-block-scoping" "^7.0.0"
- "@babel/plugin-transform-classes" "^7.0.0"
- "@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.0.0"
- "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
- "@babel/plugin-transform-flow-strip-types" "^7.0.0"
- "@babel/plugin-transform-for-of" "^7.0.0"
- "@babel/plugin-transform-function-name" "^7.0.0"
- "@babel/plugin-transform-literals" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/plugin-transform-object-assign" "^7.0.0"
- "@babel/plugin-transform-parameters" "^7.0.0"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
- "@babel/plugin-transform-regenerator" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-template-literals" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.0.0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0"
- "@babel/template" "^7.0.0"
- metro-babel7-plugin-react-transform "0.54.1"
- react-transform-hmr "^1.0.4"
-
-metro-react-native-babel-preset@^0.55.0:
- version "0.55.0"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.55.0.tgz#d5d4a6cbe9ccbcedd72fcbb71c0c311e3d56876e"
- integrity sha512-HUI+dEiVym8f1NYIF1grY9PdoY0d3SSS/HED2dDDvTORwndsAEWuXiUgKFOGWX18+RUAQog8obVQuBMgrr8ZBQ==
- dependencies:
- "@babel/plugin-proposal-class-properties" "^7.0.0"
- "@babel/plugin-proposal-export-default-from" "^7.0.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.0.0"
- "@babel/plugin-syntax-dynamic-import" "^7.0.0"
- "@babel/plugin-syntax-export-default-from" "^7.0.0"
- "@babel/plugin-syntax-flow" "^7.2.0"
- "@babel/plugin-transform-arrow-functions" "^7.0.0"
- "@babel/plugin-transform-block-scoping" "^7.0.0"
- "@babel/plugin-transform-classes" "^7.0.0"
- "@babel/plugin-transform-computed-properties" "^7.0.0"
- "@babel/plugin-transform-destructuring" "^7.0.0"
- "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
- "@babel/plugin-transform-flow-strip-types" "^7.0.0"
- "@babel/plugin-transform-for-of" "^7.0.0"
- "@babel/plugin-transform-function-name" "^7.0.0"
- "@babel/plugin-transform-literals" "^7.0.0"
- "@babel/plugin-transform-modules-commonjs" "^7.0.0"
- "@babel/plugin-transform-object-assign" "^7.0.0"
- "@babel/plugin-transform-parameters" "^7.0.0"
- "@babel/plugin-transform-react-display-name" "^7.0.0"
- "@babel/plugin-transform-react-jsx" "^7.0.0"
- "@babel/plugin-transform-react-jsx-source" "^7.0.0"
- "@babel/plugin-transform-regenerator" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.0.0"
- "@babel/plugin-transform-shorthand-properties" "^7.0.0"
- "@babel/plugin-transform-spread" "^7.0.0"
- "@babel/plugin-transform-sticky-regex" "^7.0.0"
- "@babel/plugin-transform-template-literals" "^7.0.0"
- "@babel/plugin-transform-typescript" "^7.0.0"
- "@babel/plugin-transform-unicode-regex" "^7.0.0"
- "@babel/template" "^7.0.0"
- react-refresh "^0.2.0"
-
-metro-react-native-babel-transformer@0.54.1, metro-react-native-babel-transformer@^0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.54.1.tgz#45b56db004421134e10e739f69e8de50775fef17"
- integrity sha512-ECw7xG91t8dk/PHdiyoC5SP1s9OQzfmJzG5m0YOZaKtHMe534qTDbncxaKfTI3CP99yti2maXFBRVj+xyvph/g==
- dependencies:
- "@babel/core" "^7.0.0"
- babel-preset-fbjs "^3.1.2"
- metro-babel-transformer "0.54.1"
- metro-react-native-babel-preset "0.54.1"
-
-metro-resolver@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.54.1.tgz#0295b38624b678b88b16bf11d47288845132b087"
- integrity sha512-Byv1LIawYAASy9CFRwzrncYnqaFGLe8vpw178EtzStqP05Hu6hXSqkNTrfoXa+3V9bPFGCrVzFx2NY3gFp2btg==
- dependencies:
- absolute-path "^0.0.0"
-
-metro-source-map@0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.54.1.tgz#e17bad53c11978197d3c05c9168d799c2e04dcc5"
- integrity sha512-E9iSYMSUSq5qYi1R2hTQtxH4Mxjzfgr/jaSmQIWi7h3fG2P1qOZNNSzeaeUeTK+s2N/ksVlkcL5kMikol8CDrQ==
- dependencies:
- "@babel/traverse" "^7.0.0"
- "@babel/types" "^7.0.0"
- source-map "^0.5.6"
-
-metro-source-map@0.55.0, metro-source-map@^0.55.0:
- version "0.55.0"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.55.0.tgz#1f6289905f08277c398f2b9b9c13e7e0e5a6f540"
- integrity sha512-HZODA0KPl5onJNGIztfTHHWurR2nL6Je/X8wwj+bL4ZBB/hSMVeDk7rWReCAvO3twVz7Ztp8Si0jfMmmH4Ruuw==
- dependencies:
- "@babel/traverse" "^7.0.0"
- "@babel/types" "^7.0.0"
- invariant "^2.2.4"
- metro-symbolicate "0.55.0"
- ob1 "0.55.0"
- source-map "^0.5.6"
- vlq "^1.0.0"
-
-metro-symbolicate@0.55.0:
- version "0.55.0"
- resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.55.0.tgz#4086a2adae54b5e44a4911ca572d8a7b03c71fa1"
- integrity sha512-3r3Gpv5L4U7rBGpIqw5S1nun5MelfUMLRiScJsPRGZVTX3WY1w+zpaQKlWBi5yuHf5dMQ+ZUVbhb02IdrfJ2Fg==
- dependencies:
- metro-source-map "0.55.0"
- source-map "^0.5.6"
- through2 "^2.0.1"
- vlq "^1.0.0"
-
-metro@0.54.1, metro@^0.54.1:
- version "0.54.1"
- resolved "https://registry.yarnpkg.com/metro/-/metro-0.54.1.tgz#a629be00abee5a450a25a8f71c24745f70cc9b44"
- integrity sha512-6ODPT4mEo4FCpbExRNnQAcZmf1VeNvYOTMj2Na03FjGqhNODHhI2U/wF/Ul5gqTyJ2dVdkXeyvKW3gl/LrnJRg==
- dependencies:
- "@babel/core" "^7.0.0"
- "@babel/generator" "^7.0.0"
- "@babel/parser" "^7.0.0"
- "@babel/plugin-external-helpers" "^7.0.0"
- "@babel/template" "^7.0.0"
- "@babel/traverse" "^7.0.0"
- "@babel/types" "^7.0.0"
- absolute-path "^0.0.0"
- async "^2.4.0"
- babel-preset-fbjs "^3.1.2"
- buffer-crc32 "^0.2.13"
- chalk "^2.4.1"
- concat-stream "^1.6.0"
- connect "^3.6.5"
- debug "^2.2.0"
- denodeify "^1.2.1"
- eventemitter3 "^3.0.0"
- fbjs "^1.0.0"
- fs-extra "^1.0.0"
- graceful-fs "^4.1.3"
- image-size "^0.6.0"
- invariant "^2.2.4"
- jest-haste-map "^24.7.1"
- jest-worker "^24.6.0"
- json-stable-stringify "^1.0.1"
- lodash.throttle "^4.1.1"
- merge-stream "^1.0.1"
- metro-babel-register "0.54.1"
- metro-babel-transformer "0.54.1"
- metro-cache "0.54.1"
- metro-config "0.54.1"
- metro-core "0.54.1"
- metro-inspector-proxy "0.54.1"
- metro-minify-uglify "0.54.1"
- metro-react-native-babel-preset "0.54.1"
- metro-resolver "0.54.1"
- metro-source-map "0.54.1"
- mime-types "2.1.11"
- mkdirp "^0.5.1"
- node-fetch "^2.2.0"
- nullthrows "^1.1.0"
- react-transform-hmr "^1.0.4"
- resolve "^1.5.0"
- rimraf "^2.5.4"
- serialize-error "^2.1.0"
- source-map "^0.5.6"
- temp "0.8.3"
- throat "^4.1.0"
- wordwrap "^1.0.0"
- write-file-atomic "^1.2.0"
- ws "^1.1.5"
- xpipe "^1.0.5"
- yargs "^9.0.0"
-
-micromatch@^3.1.10, micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
- integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- braces "^2.3.1"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- extglob "^2.0.4"
- fragment-cache "^0.2.1"
- kind-of "^6.0.2"
- nanomatch "^1.2.9"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.2"
-
-mime-db@1.43.0, "mime-db@>= 1.43.0 < 2":
- version "1.43.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
- integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
-
-mime-db@~1.23.0:
- version "1.23.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659"
- integrity sha1-oxtAcK2uon1zLqMzdApk0OyaZlk=
-
-mime-types@2.1.11:
- version "2.1.11"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c"
- integrity sha1-wlnEcb2oCKhdbNGTtDCl+uRHOzw=
- dependencies:
- mime-db "~1.23.0"
-
-mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
- version "2.1.26"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
- integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
- dependencies:
- mime-db "1.43.0"
-
-mime@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
-
-mime@^2.4.1:
- version "2.4.4"
- resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5"
- integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==
-
-mimic-fn@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
- integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-
-mimic-fn@^2.0.0, mimic-fn@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
- integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-
-min-document@^2.19.0:
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
- integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
- dependencies:
- dom-walk "^0.1.0"
-
-minimatch@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
- dependencies:
- brace-expansion "^1.1.7"
-
-minimist@0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
- integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
-
-minimist@^1.1.1, minimist@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
- integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
-
-mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
- integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
-
-mkdirp@^0.5.1:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
- integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=
- dependencies:
- minimist "0.0.8"
-
-moment@^2.22.1:
- version "2.24.0"
- resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
- integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==
-
-morgan@^1.9.0:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59"
- integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==
- dependencies:
- basic-auth "~2.0.0"
- debug "2.6.9"
- depd "~1.1.2"
- on-finished "~2.3.0"
- on-headers "~1.0.1"
-
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
- integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-
-ms@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
- integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
-
-ms@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-
-mute-stream@0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
- integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
-
-mute-stream@0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
- integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
-
-nan@^2.12.1:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
- integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
-
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
- integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- fragment-cache "^0.2.1"
- is-windows "^1.0.2"
- kind-of "^6.0.2"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-natural-compare@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
- integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
-
-negotiator@0.6.2:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
- integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-
-nice-try@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
- integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-
-node-fetch@^1.0.1:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
- integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==
- dependencies:
- encoding "^0.1.11"
- is-stream "^1.0.1"
-
-node-fetch@^2.2.0, node-fetch@^2.5.0:
- version "2.6.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
- integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
-
-node-int64@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
- integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-
-node-modules-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
- integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-
-node-notifier@^5.2.1, node-notifier@^5.4.2:
- version "5.4.3"
- resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50"
- integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==
- dependencies:
- growly "^1.3.0"
- is-wsl "^1.1.0"
- semver "^5.5.0"
- shellwords "^0.1.1"
- which "^1.3.0"
-
-normalize-package-data@^2.3.2:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-nullthrows@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1"
- integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
-
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-nwsapi@^2.0.7:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
- integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-
-oauth-sign@~0.9.0:
- version "0.9.0"
- resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
- integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-
-ob1@0.55.0:
- version "0.55.0"
- resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.55.0.tgz#e393b4ae786ef442b3ef2a298ab70d6ec353dbdd"
- integrity sha512-pfyiMVsUItl8WiRKMT15eCi662pCRAuYTq2+V3UpE+PpFErJI/TvRh/M/l/9TaLlbFr7krJ7gdl+FXJNcybmvw==
-
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
-
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
-object-inspect@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
- integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
-
-object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
-object.assign@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
- integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
- dependencies:
- define-properties "^1.1.2"
- function-bind "^1.1.1"
- has-symbols "^1.0.0"
- object-keys "^1.0.11"
-
-object.fromentries@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
- integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0-next.1"
- function-bind "^1.1.1"
- has "^1.0.3"
-
-object.getownpropertydescriptors@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
- integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0-next.1"
-
-object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
- dependencies:
- isobject "^3.0.1"
-
-on-finished@~2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
- integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
- dependencies:
- ee-first "1.1.1"
-
-on-headers@~1.0.1, on-headers@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
- integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
- dependencies:
- mimic-fn "^1.0.0"
-
-onetime@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5"
- integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==
- dependencies:
- mimic-fn "^2.1.0"
-
-open@^6.2.0:
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9"
- integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==
- dependencies:
- is-wsl "^1.1.0"
-
-optionator@^0.8.1, optionator@^0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
- dependencies:
- deep-is "~0.1.3"
- fast-levenshtein "~2.0.6"
- levn "~0.3.0"
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
- word-wrap "~1.2.3"
-
-options@>=0.0.5:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
- integrity sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=
-
-ora@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
- integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
- dependencies:
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-spinners "^2.0.0"
- log-symbols "^2.2.0"
- strip-ansi "^5.2.0"
- wcwidth "^1.0.1"
-
-os-locale@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
- integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==
- dependencies:
- execa "^0.7.0"
- lcid "^1.0.0"
- mem "^1.1.0"
-
-os-locale@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a"
- integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==
- dependencies:
- execa "^1.0.0"
- lcid "^2.0.0"
- mem "^4.0.0"
-
-os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
- integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-
-p-defer@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
- integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
-
-p-each-series@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"
- integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=
- dependencies:
- p-reduce "^1.0.0"
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-is-promise@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
- integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==
-
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.0.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
- integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
- dependencies:
- p-try "^2.0.0"
-
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
- dependencies:
- p-limit "^1.1.0"
-
-p-locate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
- integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
- dependencies:
- p-limit "^2.0.0"
-
-p-reduce@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
- integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
-
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-parent-module@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
- integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
- dependencies:
- callsites "^3.0.0"
-
-parse-json@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
- integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
- dependencies:
- error-ex "^1.2.0"
-
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
-parse-node-version@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b"
- integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==
-
-parse5@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
- integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==
-
-parseurl@~1.3.3:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
- integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
-
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-
-path-exists@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
- integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-key@^2.0.0, path-key@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-parse@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
- integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
-
-path-type@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
- integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=
- dependencies:
- pify "^2.0.0"
-
-path-type@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
- integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
- dependencies:
- pify "^3.0.0"
-
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-
-pify@^2.0.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
- integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
-
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
-pify@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
- integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
-
-pirates@^4.0.0, pirates@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
- integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
- dependencies:
- node-modules-regexp "^1.0.0"
-
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
- dependencies:
- find-up "^3.0.0"
-
-plist@^3.0.0, plist@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c"
- integrity sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==
- dependencies:
- base64-js "^1.2.3"
- xmlbuilder "^9.0.7"
- xmldom "0.1.x"
-
-plugin-error@^0.1.2:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace"
- integrity sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=
- dependencies:
- ansi-cyan "^0.1.1"
- ansi-red "^0.1.1"
- arr-diff "^1.0.1"
- arr-union "^2.0.1"
- extend-shallow "^1.1.2"
-
-pn@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
- integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-prelude-ls@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
- integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-
-prettier@1.16.4:
- version "1.16.4"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
- integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==
-
-pretty-format@^24.7.0, pretty-format@^24.9.0:
- version "24.9.0"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9"
- integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==
- dependencies:
- "@jest/types" "^24.9.0"
- ansi-regex "^4.0.0"
- ansi-styles "^3.2.0"
- react-is "^16.8.4"
-
-private@^0.1.6:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
- integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
-
-process-nextick-args@~2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
- integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-
-process@^0.11.10:
- version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
- integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
-
-progress@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
- integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-
-promise@^7.1.1:
- version "7.3.1"
- resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
- integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
- dependencies:
- asap "~2.0.3"
-
-prompts@^2.0.1:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.0.tgz#a444e968fa4cc7e86689a74050685ac8006c4cc4"
- integrity sha512-NfbbPPg/74fT7wk2XYQ7hAIp9zJyZp5Fu19iRbORqqy1BhtrkZ0fPafBU+7bmn8ie69DpT0R6QpJIN2oisYjJg==
- dependencies:
- kleur "^3.0.3"
- sisteransi "^1.0.3"
-
-prop-types@^15.6.2, prop-types@^15.7.2:
- version "15.7.2"
- resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
- integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
- dependencies:
- loose-envify "^1.4.0"
- object-assign "^4.1.1"
- react-is "^16.8.1"
-
-pseudomap@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
- integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
-
-psl@^1.1.24, psl@^1.1.28:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"
- integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
- integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-punycode@^1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
- integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-
-punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
-
-qs@~6.5.2:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
- integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-
-range-parser@~1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
- integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-
-react-deep-force-update@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.2.tgz#3d2ae45c2c9040cbb1772be52f8ea1ade6ca2ee1"
- integrity sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==
-
-react-devtools-core@^3.6.1:
- version "3.6.3"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-3.6.3.tgz#977d95b684c6ad28205f0c62e1e12c5f16675814"
- integrity sha512-+P+eFy/yo8Z/UH9J0DqHZuUM5+RI2wl249TNvMx3J2jpUomLQa4Zxl56GEotGfw3PIP1eI+hVf1s53FlUONStQ==
- dependencies:
- shell-quote "^1.6.1"
- ws "^3.3.1"
-
-react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6:
- version "16.12.0"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c"
- integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q==
-
-react-native-date-picker@../../:
- version "2.7.4"
- dependencies:
- moment "^2.22.1"
-
-react-native@0.60.3:
- version "0.60.3"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.60.3.tgz#da010bc5b63201166562ddeff1cd3e07da34d1de"
- integrity sha512-rUUUGYIzWwMkedfB8XxZ5TIt+qorQ70mJ08vsDTenQ16xalawOFqV34Jisdi4LgRGfQomdNWeY1Bd+H1A/dyBg==
- dependencies:
- "@babel/runtime" "^7.0.0"
- "@react-native-community/cli" "^2.0.1"
- "@react-native-community/cli-platform-android" "^2.0.1"
- "@react-native-community/cli-platform-ios" "^2.0.1"
- abort-controller "^3.0.0"
- art "^0.10.0"
- base64-js "^1.1.2"
- connect "^3.6.5"
- create-react-class "^15.6.3"
- escape-string-regexp "^1.0.5"
- event-target-shim "^5.0.1"
- fbjs "^1.0.0"
- fbjs-scripts "^1.1.0"
- hermesvm "^0.1.0"
- invariant "^2.2.4"
- jsc-android "245459.0.0"
- metro-babel-register "0.54.1"
- metro-react-native-babel-transformer "0.54.1"
- metro-source-map "^0.55.0"
- nullthrows "^1.1.0"
- pretty-format "^24.7.0"
- promise "^7.1.1"
- prop-types "^15.7.2"
- react-devtools-core "^3.6.1"
- regenerator-runtime "^0.13.2"
- scheduler "0.14.0"
- stacktrace-parser "^0.1.3"
- whatwg-fetch "^3.0.0"
-
-react-proxy@^1.1.7:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a"
- integrity sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=
- dependencies:
- lodash "^4.6.1"
- react-deep-force-update "^1.0.0"
-
-react-refresh@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.2.0.tgz#f0cff375e8f75dea7133a847a1b40cf5c073dd0d"
- integrity sha512-ITw8t/HOFNose2yf1y9pPFSSeB9ISOq2JdHpuZvj/Qb+iSsLml8GkkHdDlURzieO7B3dFDtMrrneZLl3N5z/hg==
-
-react-test-renderer@16.8.6:
- version "16.8.6"
- resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.8.6.tgz#188d8029b8c39c786f998aa3efd3ffe7642d5ba1"
- integrity sha512-H2srzU5IWYT6cZXof6AhUcx/wEyJddQ8l7cLM/F7gDXYyPr4oq+vCIxJYXVGhId1J706sqziAjuOEjyNkfgoEw==
- dependencies:
- object-assign "^4.1.1"
- prop-types "^15.6.2"
- react-is "^16.8.6"
- scheduler "^0.13.6"
-
-react-transform-hmr@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb"
- integrity sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=
- dependencies:
- global "^4.3.0"
- react-proxy "^1.1.7"
-
-react@16.8.6:
- version "16.8.6"
- resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
- integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- prop-types "^15.6.2"
- scheduler "^0.13.6"
-
-read-pkg-up@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
- integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=
- dependencies:
- find-up "^2.0.0"
- read-pkg "^2.0.0"
-
-read-pkg-up@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978"
- integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==
- dependencies:
- find-up "^3.0.0"
- read-pkg "^3.0.0"
-
-read-pkg@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
- integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=
- dependencies:
- load-json-file "^2.0.0"
- normalize-package-data "^2.3.2"
- path-type "^2.0.0"
-
-read-pkg@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
- integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=
- dependencies:
- load-json-file "^4.0.0"
- normalize-package-data "^2.3.2"
- path-type "^3.0.0"
-
-readable-stream@^2.0.1, readable-stream@^2.2.2, readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.3"
- isarray "~1.0.0"
- process-nextick-args "~2.0.0"
- safe-buffer "~5.1.1"
- string_decoder "~1.1.1"
- util-deprecate "~1.0.1"
-
-realpath-native@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
- integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
- dependencies:
- util.promisify "^1.0.0"
-
-regenerate-unicode-properties@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
- integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
- dependencies:
- regenerate "^1.4.0"
-
-regenerate@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
- integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
-
-regenerator-runtime@^0.13.2:
- version "0.13.3"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
- integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
-
-regenerator-transform@^0.14.0:
- version "0.14.1"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb"
- integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==
- dependencies:
- private "^0.1.6"
-
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
- integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regexpp@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
- integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
-
-regexpu-core@^4.6.0:
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
- integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
- dependencies:
- regenerate "^1.4.0"
- regenerate-unicode-properties "^8.1.0"
- regjsgen "^0.5.0"
- regjsparser "^0.6.0"
- unicode-match-property-ecmascript "^1.0.4"
- unicode-match-property-value-ecmascript "^1.1.0"
-
-regjsgen@^0.5.0:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c"
- integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==
-
-regjsparser@^0.6.0:
- version "0.6.2"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.2.tgz#fd62c753991467d9d1ffe0a9f67f27a529024b96"
- integrity sha512-E9ghzUtoLwDekPT0DYCp+c4h+bvuUpe6rRHCTYn6eGoqj1LgKXxT6I0Il4WbjhQkOghzi/V+y03bPKvbllL93Q==
- dependencies:
- jsesc "~0.5.0"
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
-repeat-element@^1.1.2:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
- integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
-
-repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-
-request-promise-core@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9"
- integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
- dependencies:
- lodash "^4.17.15"
-
-request-promise-native@^1.0.5:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
- integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
- dependencies:
- request-promise-core "1.1.3"
- stealthy-require "^1.1.1"
- tough-cookie "^2.3.3"
-
-request@^2.87.0:
- version "2.88.0"
- resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
- integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- har-validator "~5.1.0"
- http-signature "~1.2.0"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- oauth-sign "~0.9.0"
- performance-now "^2.1.0"
- qs "~6.5.2"
- safe-buffer "^5.1.2"
- tough-cookie "~2.4.3"
- tunnel-agent "^0.6.0"
- uuid "^3.3.2"
-
-require-directory@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
- integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
-
-require-main-filename@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
- integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=
-
-require-main-filename@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-
-resolve-cwd@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
- integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
- dependencies:
- resolve-from "^3.0.0"
-
-resolve-from@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
-
-resolve-from@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
- integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-
-resolve@1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
- integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
-
-resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1, resolve@^1.9.0:
- version "1.15.0"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5"
- integrity sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==
- dependencies:
- path-parse "^1.0.6"
-
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
- dependencies:
- onetime "^2.0.0"
- signal-exit "^3.0.2"
-
-restore-cursor@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
- integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
- dependencies:
- onetime "^5.1.0"
- signal-exit "^3.0.2"
-
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
- integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-
-rimraf@2.6.3:
- version "2.6.3"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
- integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
- dependencies:
- glob "^7.1.3"
-
-rimraf@^2.5.4, rimraf@^2.6.3:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
-
-rimraf@~2.2.6:
- version "2.2.8"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582"
- integrity sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=
-
-rsvp@^4.8.4:
- version "4.8.5"
- resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
- integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-
-run-async@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"
- integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA=
- dependencies:
- is-promise "^2.1.0"
-
-rx-lite-aggregates@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
- integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=
- dependencies:
- rx-lite "*"
-
-rx-lite@*, rx-lite@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
- integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=
-
-rxjs@^5.4.3:
- version "5.5.12"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc"
- integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==
- dependencies:
- symbol-observable "1.0.1"
-
-rxjs@^6.5.3:
- version "6.5.4"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c"
- integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q==
- dependencies:
- tslib "^1.9.0"
-
-safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-safe-buffer@^5.0.1, safe-buffer@^5.1.2:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
- integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
-
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
- dependencies:
- ret "~0.1.10"
-
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-sane@^4.0.3:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
- integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
- dependencies:
- "@cnakazawa/watch" "^1.0.3"
- anymatch "^2.0.0"
- capture-exit "^2.0.0"
- exec-sh "^0.3.2"
- execa "^1.0.0"
- fb-watchman "^2.0.0"
- micromatch "^3.1.4"
- minimist "^1.1.1"
- walker "~1.0.5"
-
-sax@^1.2.1, sax@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-
-scheduler@0.14.0:
- version "0.14.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.14.0.tgz#b392c23c9c14bfa2933d4740ad5603cc0d59ea5b"
- integrity sha512-9CgbS06Kki2f4R9FjLSITjZo5BZxPsryiRNyL3LpvrM9WxcVmhlqAOc9E+KQbeI2nqej4JIIbOsfdL51cNb4Iw==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-scheduler@^0.13.6:
- version "0.13.6"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889"
- integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0:
- version "5.7.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@5.5.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
- integrity sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==
-
-semver@^6.0.0, semver@^6.1.2, semver@^6.2.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-send@0.17.1:
- version "0.17.1"
- resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
- integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
- dependencies:
- debug "2.6.9"
- depd "~1.1.2"
- destroy "~1.0.4"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- fresh "0.5.2"
- http-errors "~1.7.2"
- mime "1.6.0"
- ms "2.1.1"
- on-finished "~2.3.0"
- range-parser "~1.2.1"
- statuses "~1.5.0"
-
-serialize-error@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a"
- integrity sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=
-
-serve-static@^1.13.1:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
- integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
- dependencies:
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- parseurl "~1.3.3"
- send "0.17.1"
-
-set-blocking@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
- integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-setimmediate@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
- integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
-
-setprototypeof@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
- integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shell-quote@1.6.1:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767"
- integrity sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=
- dependencies:
- array-filter "~0.0.0"
- array-map "~0.0.0"
- array-reduce "~0.0.0"
- jsonify "~0.0.0"
-
-shell-quote@^1.6.1:
- version "1.7.2"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
- integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
-
-shellwords@^0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b"
- integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
- integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
-
-simple-plist@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.1.0.tgz#8354ab63eb3922a054c78ce96c209c532e907a23"
- integrity sha512-2i5Tc0BYAqppM7jVzmNrI+aEUntPolIq4fDgji6WuNNn1D/qYdn2KwoLhZdzQkE04lu9L5tUoeJsjuJAvd+lFg==
- dependencies:
- bplist-creator "0.0.8"
- bplist-parser "0.2.0"
- plist "^3.0.1"
-
-sisteransi@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3"
- integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig==
-
-slash@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
- integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
-
-slash@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
- integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
-
-slice-ansi@^2.0.0, slice-ansi@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
- integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
- dependencies:
- ansi-styles "^3.2.0"
- astral-regex "^1.0.0"
- is-fullwidth-code-point "^2.0.0"
-
-slide@^1.1.5:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
- integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=
-
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
- integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
- integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
- integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
- dependencies:
- base "^0.11.1"
- debug "^2.2.0"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- map-cache "^0.2.2"
- source-map "^0.5.6"
- source-map-resolve "^0.5.0"
- use "^3.1.0"
-
-source-map-resolve@^0.5.0:
- version "0.5.3"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
- integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
- dependencies:
- atob "^2.1.2"
- decode-uri-component "^0.2.0"
- resolve-url "^0.2.1"
- source-map-url "^0.4.0"
- urix "^0.1.0"
-
-source-map-support@^0.5.16, source-map-support@^0.5.6:
- version "0.5.16"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
- integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map-url@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
- integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
-
-source-map@^0.5.0, source-map@^0.5.6:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-
-spdx-correct@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
- integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977"
- integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==
-
-spdx-expression-parse@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
- integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
- integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==
-
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
- integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
- dependencies:
- extend-shallow "^3.0.0"
-
-sprintf-js@~1.0.2:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
- integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-
-sshpk@^1.7.0:
- version "1.16.1"
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
- integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==
- dependencies:
- asn1 "~0.2.3"
- assert-plus "^1.0.0"
- bcrypt-pbkdf "^1.0.0"
- dashdash "^1.12.0"
- ecc-jsbn "~0.1.1"
- getpass "^0.1.1"
- jsbn "~0.1.0"
- safer-buffer "^2.0.2"
- tweetnacl "~0.14.0"
-
-stack-utils@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
- integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
-
-stacktrace-parser@^0.1.3:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.8.tgz#28b0272bd9aeb41636f0c8265c03ba270c865e1b"
- integrity sha512-ig5rHJSdJrAsVqdb3oAI/8C6aQ7dEwJXoy/TIEIOTzdJHssmn12o6RsFoeQSLHoKjq0lX+kqhmnLDpyQTuWiJA==
- dependencies:
- type-fest "^0.7.1"
-
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
-"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
- integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-
-stealthy-require@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
- integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
-
-stream-buffers@~2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
- integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=
-
-string-length@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
- integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=
- dependencies:
- astral-regex "^1.0.0"
- strip-ansi "^4.0.0"
-
-string-width@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
-string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
- integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
- dependencies:
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^4.0.0"
-
-string-width@^3.0.0, string-width@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
- integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
- dependencies:
- emoji-regex "^7.0.1"
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^5.1.0"
-
-string-width@^4.1.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
- integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.0"
-
-string.prototype.trimleft@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
- integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
- dependencies:
- define-properties "^1.1.3"
- function-bind "^1.1.1"
-
-string.prototype.trimright@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9"
- integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
- dependencies:
- define-properties "^1.1.3"
- function-bind "^1.1.1"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-strip-ansi@^3.0.0, strip-ansi@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
-strip-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
- integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
- dependencies:
- ansi-regex "^3.0.0"
-
-strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
- integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
- dependencies:
- ansi-regex "^4.1.0"
-
-strip-ansi@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
- integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
- dependencies:
- ansi-regex "^5.0.0"
-
-strip-bom@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
- integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-json-comments@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7"
- integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
- integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
- dependencies:
- has-flag "^3.0.0"
-
-symbol-observable@1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
- integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=
-
-symbol-tree@^3.2.2:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
- integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-
-table@^5.2.3:
- version "5.4.6"
- resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
- integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
- dependencies:
- ajv "^6.10.2"
- lodash "^4.17.14"
- slice-ansi "^2.1.0"
- string-width "^3.0.0"
-
-temp@0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59"
- integrity sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=
- dependencies:
- os-tmpdir "^1.0.0"
- rimraf "~2.2.6"
-
-test-exclude@^5.2.3:
- version "5.2.3"
- resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0"
- integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==
- dependencies:
- glob "^7.1.3"
- minimatch "^3.0.4"
- read-pkg-up "^4.0.0"
- require-main-filename "^2.0.0"
-
-text-table@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
- integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
-
-throat@^4.0.0, throat@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
- integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=
-
-through2@^2.0.0, through2@^2.0.1:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
-through@^2.3.6:
- version "2.3.8"
- resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
- integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
-
-time-stamp@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
- integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=
-
-tmp@^0.0.33:
- version "0.0.33"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
- integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
- dependencies:
- os-tmpdir "~1.0.2"
-
-tmpl@1.0.x:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
- integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
- integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-toidentifier@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
- integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
-
-tough-cookie@^2.3.3, tough-cookie@^2.3.4:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
-tough-cookie@~2.4.3:
- version "2.4.3"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
- integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==
- dependencies:
- psl "^1.1.24"
- punycode "^1.4.1"
-
-tr46@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
- integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
- dependencies:
- punycode "^2.1.0"
-
-tslib@^1.8.1, tslib@^1.9.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
- integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
-
-tsutils@^3.7.0:
- version "3.17.1"
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
- integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==
- dependencies:
- tslib "^1.8.1"
-
-tunnel-agent@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
- integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
- dependencies:
- safe-buffer "^5.0.1"
-
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
- integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
-
-type-check@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
- integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
- dependencies:
- prelude-ls "~1.1.2"
-
-type-fest@^0.7.1:
- version "0.7.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48"
- integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
-
-type-fest@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
- integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
-
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-
-ua-parser-js@^0.7.18:
- version "0.7.21"
- resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.21.tgz#853cf9ce93f642f67174273cc34565ae6f308777"
- integrity sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==
-
-uglify-es@^3.1.9:
- version "3.3.9"
- resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677"
- integrity sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==
- dependencies:
- commander "~2.13.0"
- source-map "~0.6.1"
-
-ultron@1.0.x:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
- integrity sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=
-
-ultron@~1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
- integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==
-
-unicode-canonical-property-names-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
- integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
-
-unicode-match-property-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
- integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
- dependencies:
- unicode-canonical-property-names-ecmascript "^1.0.4"
- unicode-property-aliases-ecmascript "^1.0.4"
-
-unicode-match-property-value-ecmascript@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277"
- integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==
-
-unicode-property-aliases-ecmascript@^1.0.4:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57"
- integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
-
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
- integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-universalify@^0.1.0:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
- integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
-
-unpipe@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
- integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
- dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-uri-js@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
- integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==
- dependencies:
- punycode "^2.1.0"
-
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
-use@^3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
- integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-
-util-deprecate@~1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-
-util.promisify@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
- integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.2"
- has-symbols "^1.0.1"
- object.getownpropertydescriptors "^2.1.0"
-
-utils-merge@1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
- integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
-
-uuid@^3.3.2:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-
-v8-compile-cache@^2.0.3:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e"
- integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==
-
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-vary@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
- integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-
-verror@1.10.0:
- version "1.10.0"
- resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
- integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
- dependencies:
- assert-plus "^1.0.0"
- core-util-is "1.0.2"
- extsprintf "^1.2.0"
-
-vlq@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468"
- integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==
-
-w3c-hr-time@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
- integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=
- dependencies:
- browser-process-hrtime "^0.1.2"
-
-walker@^1.0.7, walker@~1.0.5:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
- integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
- dependencies:
- makeerror "1.0.x"
-
-wcwidth@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
- integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
- dependencies:
- defaults "^1.0.3"
-
-webidl-conversions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
- integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
-
-whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
- integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
- dependencies:
- iconv-lite "0.4.24"
-
-whatwg-fetch@>=0.10.0, whatwg-fetch@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
- integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
-
-whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
- integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-
-whatwg-url@^6.4.1:
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
- integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
- dependencies:
- lodash.sortby "^4.7.0"
- tr46 "^1.0.1"
- webidl-conversions "^4.0.2"
-
-whatwg-url@^7.0.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
- integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
- dependencies:
- lodash.sortby "^4.7.0"
- tr46 "^1.0.1"
- webidl-conversions "^4.0.2"
-
-which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-
-which@^1.2.9, which@^1.3.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
- integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
- dependencies:
- isexe "^2.0.0"
-
-word-wrap@~1.2.3:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
- integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-
-wordwrap@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
- integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
-
-wrap-ansi@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
- integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=
- dependencies:
- string-width "^1.0.1"
- strip-ansi "^3.0.1"
-
-wrap-ansi@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
- integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
- dependencies:
- ansi-styles "^3.2.0"
- string-width "^3.0.0"
- strip-ansi "^5.0.0"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-write-file-atomic@2.4.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529"
- integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==
- dependencies:
- graceful-fs "^4.1.11"
- imurmurhash "^0.1.4"
- signal-exit "^3.0.2"
-
-write-file-atomic@^1.2.0:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"
- integrity sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=
- dependencies:
- graceful-fs "^4.1.11"
- imurmurhash "^0.1.4"
- slide "^1.1.5"
-
-write@1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
- integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
- dependencies:
- mkdirp "^0.5.1"
-
-ws@^1.1.0, ws@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"
- integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==
- dependencies:
- options ">=0.0.5"
- ultron "1.0.x"
-
-ws@^3.3.1:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2"
- integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==
- dependencies:
- async-limiter "~1.0.0"
- safe-buffer "~5.1.0"
- ultron "~1.1.0"
-
-ws@^5.2.0:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
- integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
- dependencies:
- async-limiter "~1.0.0"
-
-xcode@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.1.0.tgz#bab64a7e954bb50ca8d19da7e09531c65a43ecfe"
- integrity sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ==
- dependencies:
- simple-plist "^1.0.0"
- uuid "^3.3.2"
-
-xml-name-validator@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
- integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
-
-xmlbuilder@^9.0.7:
- version "9.0.7"
- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
- integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=
-
-xmldoc@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.2.tgz#6666e029fe25470d599cd30e23ff0d1ed50466d7"
- integrity sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==
- dependencies:
- sax "^1.2.1"
-
-xmldom@0.1.x:
- version "0.1.31"
- resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff"
- integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==
-
-xpipe@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/xpipe/-/xpipe-1.0.5.tgz#8dd8bf45fc3f7f55f0e054b878f43a62614dafdf"
- integrity sha1-jdi/Rfw/f1Xw4FS4ePQ6YmFNr98=
-
-xtend@~4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
-y18n@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
- integrity sha1-bRX7qITAhnnA136I53WegR4H+kE=
-
-"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
- integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
-
-yallist@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
- integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-
-yargs-parser@^11.1.1:
- version "11.1.1"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"
- integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs-parser@^13.1.1:
- version "13.1.1"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0"
- integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==
- dependencies:
- camelcase "^5.0.0"
- decamelize "^1.2.0"
-
-yargs-parser@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
- integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k=
- dependencies:
- camelcase "^4.1.0"
-
-yargs@^12.0.5:
- version "12.0.5"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
- integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
- dependencies:
- cliui "^4.0.0"
- decamelize "^1.2.0"
- find-up "^3.0.0"
- get-caller-file "^1.0.1"
- os-locale "^3.0.0"
- require-directory "^2.1.1"
- require-main-filename "^1.0.1"
- set-blocking "^2.0.0"
- string-width "^2.0.0"
- which-module "^2.0.0"
- y18n "^3.2.1 || ^4.0.0"
- yargs-parser "^11.1.1"
-
-yargs@^13.3.0:
- version "13.3.0"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83"
- integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==
- dependencies:
- cliui "^5.0.0"
- find-up "^3.0.0"
- get-caller-file "^2.0.1"
- require-directory "^2.1.1"
- require-main-filename "^2.0.0"
- set-blocking "^2.0.0"
- string-width "^3.0.0"
- which-module "^2.0.0"
- y18n "^4.0.0"
- yargs-parser "^13.1.1"
-
-yargs@^9.0.0:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c"
- integrity sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=
- dependencies:
- camelcase "^4.1.0"
- cliui "^3.2.0"
- decamelize "^1.1.1"
- get-caller-file "^1.0.1"
- os-locale "^2.0.0"
- read-pkg-up "^2.0.0"
- require-directory "^2.1.1"
- require-main-filename "^1.0.1"
- set-blocking "^2.0.0"
- string-width "^2.0.0"
- which-module "^2.0.0"
- y18n "^3.2.1"
- yargs-parser "^7.0.0"
diff --git a/examples/cocoapods/.babelrc b/examples/cocoapods/.babelrc
deleted file mode 100644
index d4b74b5..0000000
--- a/examples/cocoapods/.babelrc
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "presets": ["module:metro-react-native-babel-preset"]
-}
diff --git a/examples/cocoapods/.buckconfig b/examples/cocoapods/.buckconfig
deleted file mode 100644
index 934256c..0000000
--- a/examples/cocoapods/.buckconfig
+++ /dev/null
@@ -1,6 +0,0 @@
-
-[android]
- target = Google Inc.:Google APIs:23
-
-[maven_repositories]
- central = https://repo1.maven.org/maven2
diff --git a/examples/cocoapods/.flowconfig b/examples/cocoapods/.flowconfig
deleted file mode 100644
index 1043c82..0000000
--- a/examples/cocoapods/.flowconfig
+++ /dev/null
@@ -1,70 +0,0 @@
-[ignore]
-; We fork some components by platform
-.*/*[.]android.js
-
-; Ignore "BUCK" generated dirs
-/\.buckd/
-
-; Ignore unexpected extra "@providesModule"
-.*/node_modules/.*/node_modules/fbjs/.*
-
-; Ignore duplicate module providers
-; For RN Apps installed via npm, "Libraries" folder is inside
-; "node_modules/react-native" but in the source repo it is in the root
-.*/Libraries/react-native/React.js
-
-; Ignore polyfills
-.*/Libraries/polyfills/.*
-
-; Ignore metro
-.*/node_modules/metro/.*
-
-[include]
-
-[libs]
-node_modules/react-native/Libraries/react-native/react-native-interface.js
-node_modules/react-native/flow/
-node_modules/react-native/flow-github/
-
-[options]
-emoji=true
-
-esproposal.optional_chaining=enable
-esproposal.nullish_coalescing=enable
-
-module.system=haste
-module.system.haste.use_name_reducers=true
-# get basename
-module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
-# strip .js or .js.flow suffix
-module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
-# strip .ios suffix
-module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
-module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
-module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
-module.system.haste.paths.blacklist=.*/__tests__/.*
-module.system.haste.paths.blacklist=.*/__mocks__/.*
-module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.*
-module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.*
-
-munge_underscores=true
-
-module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
-
-module.file_ext=.js
-module.file_ext=.jsx
-module.file_ext=.json
-module.file_ext=.native.js
-
-suppress_type=$FlowIssue
-suppress_type=$FlowFixMe
-suppress_type=$FlowFixMeProps
-suppress_type=$FlowFixMeState
-
-suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
-suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
-suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
-suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
-
-[version]
-^0.78.0
diff --git a/examples/cocoapods/.gitattributes b/examples/cocoapods/.gitattributes
deleted file mode 100644
index d42ff18..0000000
--- a/examples/cocoapods/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-*.pbxproj -text
diff --git a/examples/cocoapods/.gitignore b/examples/cocoapods/.gitignore
deleted file mode 100644
index 5d64756..0000000
--- a/examples/cocoapods/.gitignore
+++ /dev/null
@@ -1,56 +0,0 @@
-# OSX
-#
-.DS_Store
-
-# Xcode
-#
-build/
-*.pbxuser
-!default.pbxuser
-*.mode1v3
-!default.mode1v3
-*.mode2v3
-!default.mode2v3
-*.perspectivev3
-!default.perspectivev3
-xcuserdata
-*.xccheckout
-*.moved-aside
-DerivedData
-*.hmap
-*.ipa
-*.xcuserstate
-project.xcworkspace
-
-# Android/IntelliJ
-#
-build/
-.idea
-.gradle
-local.properties
-*.iml
-
-# node.js
-#
-node_modules/
-npm-debug.log
-yarn-error.log
-
-# BUCK
-buck-out/
-\.buckd/
-*.keystore
-
-# fastlane
-#
-# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
-# screenshots whenever they are needed.
-# For more information about the recommended setup visit:
-# https://docs.fastlane.tools/best-practices/source-control/
-
-*/fastlane/report.xml
-*/fastlane/Preview.html
-*/fastlane/screenshots
-
-# Bundle artifact
-*.jsbundle
diff --git a/examples/cocoapods/App.js b/examples/cocoapods/App.js
deleted file mode 100644
index 2509751..0000000
--- a/examples/cocoapods/App.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * Sample React Native App
- * https://github.com/facebook/react-native
- *
- * @format
- * @flow
- */
-
-import React, { Component } from 'react'
-import { Platform, StyleSheet, Text, View } from 'react-native'
-import DatePicker from 'react-native-date-picker'
-
-const instructions = Platform.select({
- ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
- android:
- 'Double tap R on your keyboard to reload,\n' +
- 'Shake or press menu button for dev menu',
-})
-
-type Props = {}
-export default class App extends Component {
- state = { date: new Date() }
-
- render() {
- return (
-
- Welcome to React Native!
- To get started, edit App.js
- {instructions}
- this.setState({ date })}
- />
-
- )
- }
-}
-
-const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: '#F5FCFF',
- },
- welcome: {
- fontSize: 20,
- textAlign: 'center',
- margin: 10,
- },
- instructions: {
- textAlign: 'center',
- color: '#333333',
- marginBottom: 5,
- },
-})
diff --git a/examples/cocoapods/README.md b/examples/cocoapods/README.md
deleted file mode 100644
index 04f55bf..0000000
--- a/examples/cocoapods/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-# How this cocoapods project were created
-
-1. `react native init ExampleCocoaPods`
-2. `pod init` (from ./ios)
-3. `yarn add react-native-date-picker`
-4. `react-native-link`
-5. Edited [Podfile](./ios/Podfile)
- - Removed tvOS lines
- - Added 2 lines in top accordning to [this StackOverflow answer](https://stackoverflow.com/questions/50805753/duplicate-module-name-react-native#51372213)
-6. `pod install` (from ./ios)
-
-## Versions
-
-` "react": "16.6.1",`
-` "react-native": "0.57.7",`
-` "react-native-date-picker": "^2.2.1"`
diff --git a/examples/cocoapods/android/app/BUCK b/examples/cocoapods/android/app/BUCK
deleted file mode 100644
index fa4f250..0000000
--- a/examples/cocoapods/android/app/BUCK
+++ /dev/null
@@ -1,65 +0,0 @@
-# To learn about Buck see [Docs](https://buckbuild.com/).
-# To run your application with Buck:
-# - install Buck
-# - `npm start` - to start the packager
-# - `cd android`
-# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
-# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
-# - `buck install -r android/app` - compile, install and run application
-#
-
-lib_deps = []
-
-for jarfile in glob(['libs/*.jar']):
- name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
- lib_deps.append(':' + name)
- prebuilt_jar(
- name = name,
- binary_jar = jarfile,
- )
-
-for aarfile in glob(['libs/*.aar']):
- name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
- lib_deps.append(':' + name)
- android_prebuilt_aar(
- name = name,
- aar = aarfile,
- )
-
-android_library(
- name = "all-libs",
- exported_deps = lib_deps,
-)
-
-android_library(
- name = "app-code",
- srcs = glob([
- "src/main/java/**/*.java",
- ]),
- deps = [
- ":all-libs",
- ":build_config",
- ":res",
- ],
-)
-
-android_build_config(
- name = "build_config",
- package = "com.examplecocoapods",
-)
-
-android_resource(
- name = "res",
- package = "com.examplecocoapods",
- res = "src/main/res",
-)
-
-android_binary(
- name = "app",
- keystore = "//android/keystores:debug",
- manifest = "src/main/AndroidManifest.xml",
- package_type = "debug",
- deps = [
- ":app-code",
- ],
-)
diff --git a/examples/cocoapods/android/app/build.gradle b/examples/cocoapods/android/app/build.gradle
deleted file mode 100644
index 556a134..0000000
--- a/examples/cocoapods/android/app/build.gradle
+++ /dev/null
@@ -1,151 +0,0 @@
-apply plugin: "com.android.application"
-
-import com.android.build.OutputFile
-
-/**
- * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
- * and bundleReleaseJsAndAssets).
- * These basically call `react-native bundle` with the correct arguments during the Android build
- * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
- * bundle directly from the development server. Below you can see all the possible configurations
- * and their defaults. If you decide to add a configuration block, make sure to add it before the
- * `apply from: "../../node_modules/react-native/react.gradle"` line.
- *
- * project.ext.react = [
- * // the name of the generated asset file containing your JS bundle
- * bundleAssetName: "index.android.bundle",
- *
- * // the entry file for bundle generation
- * entryFile: "index.android.js",
- *
- * // whether to bundle JS and assets in debug mode
- * bundleInDebug: false,
- *
- * // whether to bundle JS and assets in release mode
- * bundleInRelease: true,
- *
- * // whether to bundle JS and assets in another build variant (if configured).
- * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
- * // The configuration property can be in the following formats
- * // 'bundleIn${productFlavor}${buildType}'
- * // 'bundleIn${buildType}'
- * // bundleInFreeDebug: true,
- * // bundleInPaidRelease: true,
- * // bundleInBeta: true,
- *
- * // whether to disable dev mode in custom build variants (by default only disabled in release)
- * // for example: to disable dev mode in the staging build type (if configured)
- * devDisabledInStaging: true,
- * // The configuration property can be in the following formats
- * // 'devDisabledIn${productFlavor}${buildType}'
- * // 'devDisabledIn${buildType}'
- *
- * // the root of your project, i.e. where "package.json" lives
- * root: "../../",
- *
- * // where to put the JS bundle asset in debug mode
- * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
- *
- * // where to put the JS bundle asset in release mode
- * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in debug mode
- * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in release mode
- * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
- *
- * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
- * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
- * // date; if you have any other folders that you want to ignore for performance reasons (gradle
- * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
- * // for example, you might want to remove it from here.
- * inputExcludes: ["android/**", "ios/**"],
- *
- * // override which node gets called and with what additional arguments
- * nodeExecutableAndArgs: ["node"],
- *
- * // supply additional arguments to the packager
- * extraPackagerArgs: []
- * ]
- */
-
-project.ext.react = [
- entryFile: "index.js"
-]
-
-apply from: "../../node_modules/react-native/react.gradle"
-
-/**
- * Set this to true to create two separate APKs instead of one:
- * - An APK that only works on ARM devices
- * - An APK that only works on x86 devices
- * The advantage is the size of the APK is reduced by about 4MB.
- * Upload all the APKs to the Play Store and people will download
- * the correct one based on the CPU architecture of their device.
- */
-def enableSeparateBuildPerCPUArchitecture = false
-
-/**
- * Run Proguard to shrink the Java bytecode in release builds.
- */
-def enableProguardInReleaseBuilds = false
-
-android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- buildToolsVersion rootProject.ext.buildToolsVersion
-
- defaultConfig {
- applicationId "com.examplecocoapods"
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- ndk {
- abiFilters "armeabi-v7a", "x86"
- }
- }
- splits {
- abi {
- reset()
- enable enableSeparateBuildPerCPUArchitecture
- universalApk false // If true, also generate a universal APK
- include "armeabi-v7a", "x86"
- }
- }
- buildTypes {
- release {
- minifyEnabled enableProguardInReleaseBuilds
- proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
- }
- }
- // applicationVariants are e.g. debug, release
- applicationVariants.all { variant ->
- variant.outputs.each { output ->
- // For each separate APK per architecture, set a unique version code as described here:
- // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
- def versionCodes = ["armeabi-v7a":1, "x86":2]
- def abi = output.getFilter(OutputFile.ABI)
- if (abi != null) { // null for the universal-debug, universal-release variants
- output.versionCodeOverride =
- versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
- }
- }
- }
-}
-
-dependencies {
- compile project(':react-native-date-picker')
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
- implementation "com.facebook.react:react-native:+" // From node_modules
-}
-
-// Run this once to be able to run the application with BUCK
-// puts all compile dependencies into folder libs for BUCK to use
-task copyDownloadableDepsToLibs(type: Copy) {
- from configurations.compile
- into 'libs'
-}
diff --git a/examples/cocoapods/android/app/proguard-rules.pro b/examples/cocoapods/android/app/proguard-rules.pro
deleted file mode 100644
index a92fa17..0000000
--- a/examples/cocoapods/android/app/proguard-rules.pro
+++ /dev/null
@@ -1,17 +0,0 @@
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the proguardFiles
-# directive in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
diff --git a/examples/cocoapods/android/app/src/main/AndroidManifest.xml b/examples/cocoapods/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index d034e43..0000000
--- a/examples/cocoapods/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainActivity.java b/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainActivity.java
deleted file mode 100644
index f3353ce..0000000
--- a/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainActivity.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.examplecocoapods;
-
-import com.facebook.react.ReactActivity;
-
-public class MainActivity extends ReactActivity {
-
- /**
- * Returns the name of the main component registered from JavaScript.
- * This is used to schedule rendering of the component.
- */
- @Override
- protected String getMainComponentName() {
- return "ExampleCocoapods";
- }
-}
diff --git a/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainApplication.java b/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainApplication.java
deleted file mode 100644
index cc6152c..0000000
--- a/examples/cocoapods/android/app/src/main/java/com/examplecocoapods/MainApplication.java
+++ /dev/null
@@ -1,47 +0,0 @@
-package com.examplecocoapods;
-
-import android.app.Application;
-
-import com.facebook.react.ReactApplication;
-import com.henninghall.date_picker.DatePickerPackage;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.shell.MainReactPackage;
-import com.facebook.soloader.SoLoader;
-
-import java.util.Arrays;
-import java.util.List;
-
-public class MainApplication extends Application implements ReactApplication {
-
- private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
-
- @Override
- protected List getPackages() {
- return Arrays.asList(
- new MainReactPackage(),
- new DatePickerPackage()
- );
- }
-
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
- };
-
- @Override
- public ReactNativeHost getReactNativeHost() {
- return mReactNativeHost;
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
- SoLoader.init(this, /* native exopackage */ false);
- }
-}
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index a2f5908..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index 1b52399..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ff10afd..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index 115a4c7..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index dcd3cd8..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 459ca60..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 8ca12fe..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index 8e19b41..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b824ebd..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index 4c19a13..0000000
Binary files a/examples/cocoapods/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/examples/cocoapods/android/app/src/main/res/values/strings.xml b/examples/cocoapods/android/app/src/main/res/values/strings.xml
deleted file mode 100644
index 2f0a480..0000000
--- a/examples/cocoapods/android/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- ExampleCocoapods
-
diff --git a/examples/cocoapods/android/app/src/main/res/values/styles.xml b/examples/cocoapods/android/app/src/main/res/values/styles.xml
deleted file mode 100644
index 319eb0c..0000000
--- a/examples/cocoapods/android/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
diff --git a/examples/cocoapods/android/build.gradle b/examples/cocoapods/android/build.gradle
deleted file mode 100644
index a1e8085..0000000
--- a/examples/cocoapods/android/build.gradle
+++ /dev/null
@@ -1,39 +0,0 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
- ext {
- buildToolsVersion = "27.0.3"
- minSdkVersion = 16
- compileSdkVersion = 27
- targetSdkVersion = 26
- supportLibVersion = "27.1.1"
- }
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.1.4'
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- mavenLocal()
- google()
- jcenter()
- maven {
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
- url "$rootDir/../node_modules/react-native/android"
- }
- }
-}
-
-
-task wrapper(type: Wrapper) {
- gradleVersion = '4.4'
- distributionUrl = distributionUrl.replace("bin", "all")
-}
diff --git a/examples/cocoapods/android/gradle.properties b/examples/cocoapods/android/gradle.properties
deleted file mode 100644
index 89e0d99..0000000
--- a/examples/cocoapods/android/gradle.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-# Project-wide Gradle settings.
-
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-# Default value: -Xmx10248m -XX:MaxPermSize=256m
-# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
-
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
diff --git a/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.jar b/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 01b8bf6..0000000
Binary files a/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.properties b/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index b6517bb..0000000
--- a/examples/cocoapods/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
diff --git a/examples/cocoapods/android/gradlew b/examples/cocoapods/android/gradlew
deleted file mode 100755
index cccdd3d..0000000
--- a/examples/cocoapods/android/gradlew
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/usr/bin/env sh
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=$((i+1))
- done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-fi
-
-exec "$JAVACMD" "$@"
diff --git a/examples/cocoapods/android/gradlew.bat b/examples/cocoapods/android/gradlew.bat
deleted file mode 100644
index e95643d..0000000
--- a/examples/cocoapods/android/gradlew.bat
+++ /dev/null
@@ -1,84 +0,0 @@
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/examples/cocoapods/android/keystores/BUCK b/examples/cocoapods/android/keystores/BUCK
deleted file mode 100644
index 88e4c31..0000000
--- a/examples/cocoapods/android/keystores/BUCK
+++ /dev/null
@@ -1,8 +0,0 @@
-keystore(
- name = "debug",
- properties = "debug.keystore.properties",
- store = "debug.keystore",
- visibility = [
- "PUBLIC",
- ],
-)
diff --git a/examples/cocoapods/android/keystores/debug.keystore.properties b/examples/cocoapods/android/keystores/debug.keystore.properties
deleted file mode 100644
index 121bfb4..0000000
--- a/examples/cocoapods/android/keystores/debug.keystore.properties
+++ /dev/null
@@ -1,4 +0,0 @@
-key.store=debug.keystore
-key.alias=androiddebugkey
-key.store.password=android
-key.alias.password=android
diff --git a/examples/cocoapods/android/settings.gradle b/examples/cocoapods/android/settings.gradle
deleted file mode 100644
index ebd2f44..0000000
--- a/examples/cocoapods/android/settings.gradle
+++ /dev/null
@@ -1,5 +0,0 @@
-rootProject.name = 'ExampleCocoapods'
-include ':react-native-date-picker'
-project(':react-native-date-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-date-picker/android')
-
-include ':app'
diff --git a/examples/cocoapods/app.json b/examples/cocoapods/app.json
deleted file mode 100644
index f82acd3..0000000
--- a/examples/cocoapods/app.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "ExampleCocoapods",
- "displayName": "ExampleCocoapods"
-}
\ No newline at end of file
diff --git a/examples/cocoapods/index.js b/examples/cocoapods/index.js
deleted file mode 100644
index f21e01d..0000000
--- a/examples/cocoapods/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/** @format */
-
-import { AppRegistry } from 'react-native'
-import App from './App'
-import { name as appName } from './app.json'
-
-AppRegistry.registerComponent(appName, () => App)
diff --git a/examples/cocoapods/ios/ExampleCocoapods-tvOS/Info.plist b/examples/cocoapods/ios/ExampleCocoapods-tvOS/Info.plist
deleted file mode 100644
index 2fb6a11..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods-tvOS/Info.plist
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
- LSRequiresIPhoneOS
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- armv7
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIViewControllerBasedStatusBarAppearance
-
- NSLocationWhenInUseUsageDescription
-
- NSAppTransportSecurity
-
-
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods-tvOSTests/Info.plist b/examples/cocoapods/ios/ExampleCocoapods-tvOSTests/Info.plist
deleted file mode 100644
index 886825c..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods-tvOSTests/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/project.pbxproj b/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/project.pbxproj
deleted file mode 100644
index 37a2a14..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,1624 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
- 00E356F31AD99517003FC87E /* ExampleCocoapodsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleCocoapodsTests.m */; };
- 0594AC98AF2A9D32834F2EB9 /* libPods-ExampleCocoapodsTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 28C4B65A4635B72CA352917C /* libPods-ExampleCocoapodsTests.a */; };
- 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
- 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
- 2DCD954D1E0B4F2C00145EB5 /* ExampleCocoapodsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleCocoapodsTests.m */; };
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
- A00FFD44D6E80814A53E1FF9 /* libPods-ExampleCocoapods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F5458FE1BD4EF376FE5DAB50 /* libPods-ExampleCocoapods.a */; };
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
- 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTActionSheet;
- };
- 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTGeolocation;
- };
- 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
- remoteInfo = RCTImage;
- };
- 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 58B511DB1A9E6C8500147676;
- remoteInfo = RCTNetwork;
- };
- 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
- remoteInfo = RCTVibration;
- };
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = ExampleCocoapods;
- };
- 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTSettings;
- };
- 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
- remoteInfo = RCTWebSocket;
- };
- 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
- remoteInfo = React;
- };
- 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
- remoteInfo = "ExampleCocoapods-tvOS";
- };
- 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = ADD01A681E09402E00F6D226;
- remoteInfo = "RCTBlob-tvOS";
- };
- 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
- remoteInfo = fishhook;
- };
- 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
- remoteInfo = "fishhook-tvOS";
- };
- 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
- remoteInfo = jsinspector;
- };
- 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
- remoteInfo = "jsinspector-tvOS";
- };
- 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
- remoteInfo = "third-party";
- };
- 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
- remoteInfo = "third-party-tvOS";
- };
- 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 139D7E881E25C6D100323FB7;
- remoteInfo = "double-conversion";
- };
- 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D383D621EBD27B9005632C8;
- remoteInfo = "double-conversion-tvOS";
- };
- 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
- remoteInfo = privatedata;
- };
- 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
- remoteInfo = "privatedata-tvOS";
- };
- 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
- remoteInfo = "RCTImage-tvOS";
- };
- 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28471D9B043800D4039D;
- remoteInfo = "RCTLinking-tvOS";
- };
- 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
- remoteInfo = "RCTNetwork-tvOS";
- };
- 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28611D9B046600D4039D;
- remoteInfo = "RCTSettings-tvOS";
- };
- 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
- remoteInfo = "RCTText-tvOS";
- };
- 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28881D9B049200D4039D;
- remoteInfo = "RCTWebSocket-tvOS";
- };
- 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
- remoteInfo = "React-tvOS";
- };
- 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
- remoteInfo = yoga;
- };
- 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
- remoteInfo = "yoga-tvOS";
- };
- 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
- remoteInfo = cxxreact;
- };
- 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
- remoteInfo = "cxxreact-tvOS";
- };
- 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
- remoteInfo = jschelpers;
- };
- 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
- remoteInfo = "jschelpers-tvOS";
- };
- 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTAnimation;
- };
- 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
- remoteInfo = "RCTAnimation-tvOS";
- };
- 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
- remoteInfo = RCTLinking;
- };
- 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 58B5119B1A9E6C1200147676;
- remoteInfo = RCTText;
- };
- ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
- remoteInfo = RCTBlob;
- };
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXFileReference section */
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
- 00E356EE1AD99517003FC87E /* ExampleCocoapodsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleCocoapodsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- 00E356F21AD99517003FC87E /* ExampleCocoapodsTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleCocoapodsTests.m; sourceTree = ""; };
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
- 13B07F961A680F5B00A75B9A /* ExampleCocoapods.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ExampleCocoapods.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ExampleCocoapods/AppDelegate.h; sourceTree = ""; };
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ExampleCocoapods/AppDelegate.m; sourceTree = ""; };
- 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ExampleCocoapods/Images.xcassets; sourceTree = ""; };
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ExampleCocoapods/Info.plist; sourceTree = ""; };
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ExampleCocoapods/main.m; sourceTree = ""; };
- 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
- 28C4B65A4635B72CA352917C /* libPods-ExampleCocoapodsTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ExampleCocoapodsTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D02E47B1E0B4A5D006451C7 /* ExampleCocoapods-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ExampleCocoapods-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D02E4901E0B4A5D006451C7 /* ExampleCocoapods-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ExampleCocoapods-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 5E3139C3EF102648C4B4389A /* Pods-ExampleCocoapods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExampleCocoapods.release.xcconfig"; path = "Pods/Target Support Files/Pods-ExampleCocoapods/Pods-ExampleCocoapods.release.xcconfig"; sourceTree = ""; };
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
- 88F43416EA70AEBEE951EBF8 /* Pods-ExampleCocoapodsTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExampleCocoapodsTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ExampleCocoapodsTests/Pods-ExampleCocoapodsTests.debug.xcconfig"; sourceTree = ""; };
- 9969C68C07BC54CFFC569580 /* Pods-ExampleCocoapodsTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExampleCocoapodsTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-ExampleCocoapodsTests/Pods-ExampleCocoapodsTests.release.xcconfig"; sourceTree = ""; };
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
- EC76F553D9F6DBC5B6B2CF61 /* Pods-ExampleCocoapods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExampleCocoapods.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ExampleCocoapods/Pods-ExampleCocoapods.debug.xcconfig"; sourceTree = ""; };
- F5458FE1BD4EF376FE5DAB50 /* libPods-ExampleCocoapods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ExampleCocoapods.a"; sourceTree = BUILT_PRODUCTS_DIR; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
- 0594AC98AF2A9D32834F2EB9 /* libPods-ExampleCocoapodsTests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
- 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */,
- 146834051AC3E58100842450 /* libReact.a in Frameworks */,
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
- A00FFD44D6E80814A53E1FF9 /* libPods-ExampleCocoapods.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 00C302B61ABCB90400DB3ED1 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 00C302BC1ABCB91800DB3ED1 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 00C302D41ABCB9D200DB3ED1 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
- isa = PBXGroup;
- children = (
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 00E356EF1AD99517003FC87E /* ExampleCocoapodsTests */ = {
- isa = PBXGroup;
- children = (
- 00E356F21AD99517003FC87E /* ExampleCocoapodsTests.m */,
- 00E356F01AD99517003FC87E /* Supporting Files */,
- );
- path = ExampleCocoapodsTests;
- sourceTree = "";
- };
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 00E356F11AD99517003FC87E /* Info.plist */,
- );
- name = "Supporting Files";
- sourceTree = "";
- };
- 139105B71AF99BAD00B5F7CC /* Products */ = {
- isa = PBXGroup;
- children = (
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 139FDEE71B06529A00C62182 /* Products */ = {
- isa = PBXGroup;
- children = (
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 13B07FAE1A68108700A75B9A /* ExampleCocoapods */ = {
- isa = PBXGroup;
- children = (
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
- 13B07FB61A68108700A75B9A /* Info.plist */,
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
- 13B07FB71A68108700A75B9A /* main.m */,
- );
- name = ExampleCocoapods;
- sourceTree = "";
- };
- 146834001AC3E56700842450 /* Products */ = {
- isa = PBXGroup;
- children = (
- 146834041AC3E56700842450 /* libReact.a */,
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
- 2DF0FFE32056DD460020B375 /* libthird-party.a */,
- 2DF0FFE52056DD460020B375 /* libthird-party.a */,
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 2D16E6891FA4F8E400B85C8A /* libReact.a */,
- F5458FE1BD4EF376FE5DAB50 /* libPods-ExampleCocoapods.a */,
- 28C4B65A4635B72CA352917C /* libPods-ExampleCocoapodsTests.a */,
- );
- name = Frameworks;
- sourceTree = "";
- };
- 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
- isa = PBXGroup;
- children = (
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 78C398B11ACF4ADC00677621 /* Products */ = {
- isa = PBXGroup;
- children = (
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
- 146833FF1AC3E56700842450 /* React.xcodeproj */,
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
- );
- name = Libraries;
- sourceTree = "";
- };
- 832341B11AAA6A8300B99B32 /* Products */ = {
- isa = PBXGroup;
- children = (
- 832341B51AAA6A8300B99B32 /* libRCTText.a */,
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
- 83CBB9F61A601CBA00E9B192 = {
- isa = PBXGroup;
- children = (
- 13B07FAE1A68108700A75B9A /* ExampleCocoapods */,
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
- 00E356EF1AD99517003FC87E /* ExampleCocoapodsTests */,
- 83CBBA001A601CBA00E9B192 /* Products */,
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
- 96BACA78F26F483CD786ECFA /* Pods */,
- );
- indentWidth = 2;
- sourceTree = "";
- tabWidth = 2;
- usesTabs = 0;
- };
- 83CBBA001A601CBA00E9B192 /* Products */ = {
- isa = PBXGroup;
- children = (
- 13B07F961A680F5B00A75B9A /* ExampleCocoapods.app */,
- 00E356EE1AD99517003FC87E /* ExampleCocoapodsTests.xctest */,
- 2D02E47B1E0B4A5D006451C7 /* ExampleCocoapods-tvOS.app */,
- 2D02E4901E0B4A5D006451C7 /* ExampleCocoapods-tvOSTests.xctest */,
- );
- name = Products;
- sourceTree = "";
- };
- 96BACA78F26F483CD786ECFA /* Pods */ = {
- isa = PBXGroup;
- children = (
- EC76F553D9F6DBC5B6B2CF61 /* Pods-ExampleCocoapods.debug.xcconfig */,
- 5E3139C3EF102648C4B4389A /* Pods-ExampleCocoapods.release.xcconfig */,
- 88F43416EA70AEBEE951EBF8 /* Pods-ExampleCocoapodsTests.debug.xcconfig */,
- 9969C68C07BC54CFFC569580 /* Pods-ExampleCocoapodsTests.release.xcconfig */,
- );
- name = Pods;
- sourceTree = "";
- };
- ADBDB9201DFEBF0600ED6528 /* Products */ = {
- isa = PBXGroup;
- children = (
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
- );
- name = Products;
- sourceTree = "";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 00E356ED1AD99517003FC87E /* ExampleCocoapodsTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleCocoapodsTests" */;
- buildPhases = (
- 017CB0ED9EAAF9D55607698E /* [CP] Check Pods Manifest.lock */,
- 00E356EA1AD99517003FC87E /* Sources */,
- 00E356EB1AD99517003FC87E /* Frameworks */,
- 00E356EC1AD99517003FC87E /* Resources */,
- 5B18A00A635B6803874B98A6 /* [CP] Embed Pods Frameworks */,
- 05E78A551019AE1E19245001 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
- );
- name = ExampleCocoapodsTests;
- productName = ExampleCocoapodsTests;
- productReference = 00E356EE1AD99517003FC87E /* ExampleCocoapodsTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 13B07F861A680F5B00A75B9A /* ExampleCocoapods */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ExampleCocoapods" */;
- buildPhases = (
- 478514CCA1884E970BCA7458 /* [CP] Check Pods Manifest.lock */,
- 13B07F871A680F5B00A75B9A /* Sources */,
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
- 13B07F8E1A680F5B00A75B9A /* Resources */,
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
- 7C5F453A16F32E31F009ECC0 /* [CP] Embed Pods Frameworks */,
- 7C8B489C1F3208397CA516B9 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = ExampleCocoapods;
- productName = "Hello World";
- productReference = 13B07F961A680F5B00A75B9A /* ExampleCocoapods.app */;
- productType = "com.apple.product-type.application";
- };
- 2D02E47A1E0B4A5D006451C7 /* ExampleCocoapods-tvOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ExampleCocoapods-tvOS" */;
- buildPhases = (
- 2D02E4771E0B4A5D006451C7 /* Sources */,
- 2D02E4781E0B4A5D006451C7 /* Frameworks */,
- 2D02E4791E0B4A5D006451C7 /* Resources */,
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "ExampleCocoapods-tvOS";
- productName = "ExampleCocoapods-tvOS";
- productReference = 2D02E47B1E0B4A5D006451C7 /* ExampleCocoapods-tvOS.app */;
- productType = "com.apple.product-type.application";
- };
- 2D02E48F1E0B4A5D006451C7 /* ExampleCocoapods-tvOSTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ExampleCocoapods-tvOSTests" */;
- buildPhases = (
- 2D02E48C1E0B4A5D006451C7 /* Sources */,
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
- 2D02E48E1E0B4A5D006451C7 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
- );
- name = "ExampleCocoapods-tvOSTests";
- productName = "ExampleCocoapods-tvOSTests";
- productReference = 2D02E4901E0B4A5D006451C7 /* ExampleCocoapods-tvOSTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0940;
- ORGANIZATIONNAME = Facebook;
- TargetAttributes = {
- 00E356ED1AD99517003FC87E = {
- CreatedOnToolsVersion = 6.2;
- TestTargetID = 13B07F861A680F5B00A75B9A;
- };
- 2D02E47A1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- };
- 2D02E48F1E0B4A5D006451C7 = {
- CreatedOnToolsVersion = 8.2.1;
- ProvisioningStyle = Automatic;
- TestTargetID = 2D02E47A1E0B4A5D006451C7;
- };
- };
- };
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ExampleCocoapods" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 83CBB9F61A601CBA00E9B192;
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
- projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
- ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
- },
- {
- ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
- ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
- },
- {
- ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
- ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
- },
- {
- ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
- ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
- },
- {
- ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
- ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
- },
- {
- ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
- ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
- },
- {
- ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
- ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
- },
- {
- ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
- ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
- },
- {
- ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
- ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
- },
- {
- ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
- ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
- },
- {
- ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
- ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
- },
- {
- ProductGroup = 146834001AC3E56700842450 /* Products */;
- ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
- },
- );
- projectRoot = "";
- targets = (
- 13B07F861A680F5B00A75B9A /* ExampleCocoapods */,
- 00E356ED1AD99517003FC87E /* ExampleCocoapodsTests */,
- 2D02E47A1E0B4A5D006451C7 /* ExampleCocoapods-tvOS */,
- 2D02E48F1E0B4A5D006451C7 /* ExampleCocoapods-tvOSTests */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXReferenceProxy section */
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTActionSheet.a;
- remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTGeolocation.a;
- remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTImage.a;
- remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTNetwork.a;
- remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTVibration.a;
- remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTSettings.a;
- remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTWebSocket.a;
- remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 146834041AC3E56700842450 /* libReact.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libReact.a;
- remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTBlob-tvOS.a";
- remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libfishhook.a;
- remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libfishhook-tvOS.a";
- remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjsinspector.a;
- remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libjsinspector-tvOS.a";
- remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libthird-party.a";
- remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libthird-party.a";
- remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libdouble-conversion.a";
- remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libdouble-conversion.a";
- remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libprivatedata.a;
- remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libprivatedata-tvOS.a";
- remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTImage-tvOS.a";
- remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTLinking-tvOS.a";
- remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTNetwork-tvOS.a";
- remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTSettings-tvOS.a";
- remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTText-tvOS.a";
- remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = "libRCTWebSocket-tvOS.a";
- remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libReact.a;
- remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libyoga.a;
- remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libyoga.a;
- remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libcxxreact.a;
- remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libcxxreact.a;
- remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjschelpers.a;
- remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libjschelpers.a;
- remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTAnimation.a;
- remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTAnimation.a;
- remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTLinking.a;
- remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTText.a;
- remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
- isa = PBXReferenceProxy;
- fileType = archive.ar;
- path = libRCTBlob.a;
- remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
-/* End PBXReferenceProxy section */
-
-/* Begin PBXResourcesBuildPhase section */
- 00E356EC1AD99517003FC87E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4791E0B4A5D006451C7 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native code and images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 017CB0ED9EAAF9D55607698E /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-ExampleCocoapodsTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 05E78A551019AE1E19245001 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ExampleCocoapodsTests/Pods-ExampleCocoapodsTests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "Bundle React Native Code And Images";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
- };
- 478514CCA1884E970BCA7458 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-ExampleCocoapods-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 5B18A00A635B6803874B98A6 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ExampleCocoapodsTests/Pods-ExampleCocoapodsTests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 7C5F453A16F32E31F009ECC0 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Embed Pods Frameworks";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ExampleCocoapods/Pods-ExampleCocoapods-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 7C8B489C1F3208397CA516B9 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ExampleCocoapods/Pods-ExampleCocoapods-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 00E356EA1AD99517003FC87E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 00E356F31AD99517003FC87E /* ExampleCocoapodsTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 13B07F871A680F5B00A75B9A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E4771E0B4A5D006451C7 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2DCD954D1E0B4F2C00145EB5 /* ExampleCocoapodsTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A /* ExampleCocoapods */;
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
- };
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 2D02E47A1E0B4A5D006451C7 /* ExampleCocoapods-tvOS */;
- targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
- };
-/* End PBXTargetDependency section */
-
-/* Begin PBXVariantGroup section */
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 13B07FB21A68108700A75B9A /* Base */,
- );
- name = LaunchScreen.xib;
- path = ExampleCocoapods;
- sourceTree = "";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 00E356F61AD99517003FC87E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 88F43416EA70AEBEE951EBF8 /* Pods-ExampleCocoapodsTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- INFOPLIST_FILE = ExampleCocoapodsTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ExampleCocoapods.app/ExampleCocoapods";
- };
- name = Debug;
- };
- 00E356F71AD99517003FC87E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9969C68C07BC54CFFC569580 /* Pods-ExampleCocoapodsTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- COPY_PHASE_STRIP = NO;
- INFOPLIST_FILE = ExampleCocoapodsTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ExampleCocoapods.app/ExampleCocoapods";
- };
- name = Release;
- };
- 13B07F941A680F5B00A75B9A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = EC76F553D9F6DBC5B6B2CF61 /* Pods-ExampleCocoapods.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CURRENT_PROJECT_VERSION = 1;
- DEAD_CODE_STRIPPING = NO;
- INFOPLIST_FILE = ExampleCocoapods/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = ExampleCocoapods;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Debug;
- };
- 13B07F951A680F5B00A75B9A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 5E3139C3EF102648C4B4389A /* Pods-ExampleCocoapods.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- CURRENT_PROJECT_VERSION = 1;
- INFOPLIST_FILE = ExampleCocoapods/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = ExampleCocoapods;
- VERSIONING_SYSTEM = "apple-generic";
- };
- name = Release;
- };
- 2D02E4971E0B4A5E006451C7 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "ExampleCocoapods-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ExampleCocoapods-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Debug;
- };
- 2D02E4981E0B4A5E006451C7 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "ExampleCocoapods-tvOS/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ExampleCocoapods-tvOS";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TARGETED_DEVICE_FAMILY = 3;
- TVOS_DEPLOYMENT_TARGET = 9.2;
- };
- name = Release;
- };
- 2D02E4991E0B4A5E006451C7 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_TESTABILITY = YES;
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "ExampleCocoapods-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ExampleCocoapods-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ExampleCocoapods-tvOS.app/ExampleCocoapods-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Debug;
- };
- 2D02E49A1E0B4A5E006451C7 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_NO_COMMON_BLOCKS = YES;
- INFOPLIST_FILE = "ExampleCocoapods-tvOSTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-ObjC",
- "-lc++",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ExampleCocoapods-tvOSTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SDKROOT = appletvos;
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ExampleCocoapods-tvOS.app/ExampleCocoapods-tvOS";
- TVOS_DEPLOYMENT_TARGET = 10.1;
- };
- name = Release;
- };
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 83CBBA211A601CBA00E9B192 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleCocoapodsTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 00E356F61AD99517003FC87E /* Debug */,
- 00E356F71AD99517003FC87E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ExampleCocoapods" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 13B07F941A680F5B00A75B9A /* Debug */,
- 13B07F951A680F5B00A75B9A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ExampleCocoapods-tvOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4971E0B4A5E006451C7 /* Debug */,
- 2D02E4981E0B4A5E006451C7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ExampleCocoapods-tvOSTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2D02E4991E0B4A5E006451C7 /* Debug */,
- 2D02E49A1E0B4A5E006451C7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ExampleCocoapods" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 83CBBA201A601CBA00E9B192 /* Debug */,
- 83CBBA211A601CBA00E9B192 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
-}
diff --git a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods-tvOS.xcscheme b/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods-tvOS.xcscheme
deleted file mode 100644
index 417f41b..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods-tvOS.xcscheme
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods.xcscheme b/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods.xcscheme
deleted file mode 100644
index 96fc53c..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods.xcodeproj/xcshareddata/xcschemes/ExampleCocoapods.xcscheme
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods.xcworkspace/contents.xcworkspacedata b/examples/cocoapods/ios/ExampleCocoapods.xcworkspace/contents.xcworkspacedata
deleted file mode 100644
index 2b1a990..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods.xcworkspace/contents.xcworkspacedata
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.h b/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.h
deleted file mode 100644
index d4f2580..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * Copyright (c) 2015-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-
-@interface AppDelegate : UIResponder
-
-@property (nonatomic, strong) UIWindow *window;
-
-@end
diff --git a/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.m b/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.m
deleted file mode 100644
index a8337f6..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/AppDelegate.m
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Copyright (c) 2015-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import "AppDelegate.h"
-
-#import
-#import
-
-@implementation AppDelegate
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
-{
- NSURL *jsCodeLocation;
-
- jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
-
- RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
- moduleName:@"ExampleCocoapods"
- initialProperties:nil
- launchOptions:launchOptions];
- rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
-
- self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- UIViewController *rootViewController = [UIViewController new];
- rootViewController.view = rootView;
- self.window.rootViewController = rootViewController;
- [self.window makeKeyAndVisible];
- return YES;
-}
-
-@end
diff --git a/examples/cocoapods/ios/ExampleCocoapods/Base.lproj/LaunchScreen.xib b/examples/cocoapods/ios/ExampleCocoapods/Base.lproj/LaunchScreen.xib
deleted file mode 100644
index 2aad42b..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/Base.lproj/LaunchScreen.xib
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/AppIcon.appiconset/Contents.json b/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/AppIcon.appiconset/Contents.json
deleted file mode 100644
index 118c98f..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/AppIcon.appiconset/Contents.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "images" : [
- {
- "idiom" : "iphone",
- "size" : "29x29",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "29x29",
- "scale" : "3x"
- },
- {
- "idiom" : "iphone",
- "size" : "40x40",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "40x40",
- "scale" : "3x"
- },
- {
- "idiom" : "iphone",
- "size" : "60x60",
- "scale" : "2x"
- },
- {
- "idiom" : "iphone",
- "size" : "60x60",
- "scale" : "3x"
- }
- ],
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
\ No newline at end of file
diff --git a/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/Contents.json b/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/Contents.json
deleted file mode 100644
index 2d92bd5..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/Images.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "version" : 1,
- "author" : "xcode"
- }
-}
diff --git a/examples/cocoapods/ios/ExampleCocoapods/Info.plist b/examples/cocoapods/ios/ExampleCocoapods/Info.plist
deleted file mode 100644
index 6b5499a..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/Info.plist
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleDisplayName
- ExampleCocoapods
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
- LSRequiresIPhoneOS
-
- NSLocationWhenInUseUsageDescription
-
- UILaunchStoryboardName
- LaunchScreen
- UIRequiredDeviceCapabilities
-
- armv7
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UIViewControllerBasedStatusBarAppearance
-
- NSLocationWhenInUseUsageDescription
-
- NSAppTransportSecurity
-
-
- NSAllowsArbitraryLoads
-
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
-
-
-
diff --git a/examples/cocoapods/ios/ExampleCocoapods/main.m b/examples/cocoapods/ios/ExampleCocoapods/main.m
deleted file mode 100644
index c73e006..0000000
--- a/examples/cocoapods/ios/ExampleCocoapods/main.m
+++ /dev/null
@@ -1,16 +0,0 @@
-/**
- * Copyright (c) 2015-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-
-#import "AppDelegate.h"
-
-int main(int argc, char * argv[]) {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
- }
-}
diff --git a/examples/cocoapods/ios/ExampleCocoapodsTests/ExampleCocoapodsTests.m b/examples/cocoapods/ios/ExampleCocoapodsTests/ExampleCocoapodsTests.m
deleted file mode 100644
index e8cd966..0000000
--- a/examples/cocoapods/ios/ExampleCocoapodsTests/ExampleCocoapodsTests.m
+++ /dev/null
@@ -1,68 +0,0 @@
-/**
- * Copyright (c) 2015-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-#import
-#import
-
-#import
-#import
-
-#define TIMEOUT_SECONDS 600
-#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
-
-@interface ExampleCocoapodsTests : XCTestCase
-
-@end
-
-@implementation ExampleCocoapodsTests
-
-- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
-{
- if (test(view)) {
- return YES;
- }
- for (UIView *subview in [view subviews]) {
- if ([self findSubviewInView:subview matching:test]) {
- return YES;
- }
- }
- return NO;
-}
-
-- (void)testRendersWelcomeScreen
-{
- UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
- NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
- BOOL foundElement = NO;
-
- __block NSString *redboxError = nil;
- RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
- if (level >= RCTLogLevelError) {
- redboxError = message;
- }
- });
-
- while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
- [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
- [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
-
- foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
- if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
- return YES;
- }
- return NO;
- }];
- }
-
- RCTSetLogFunction(RCTDefaultLogFunction);
-
- XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
- XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
-}
-
-
-@end
diff --git a/examples/cocoapods/ios/ExampleCocoapodsTests/Info.plist b/examples/cocoapods/ios/ExampleCocoapodsTests/Info.plist
deleted file mode 100644
index ba72822..0000000
--- a/examples/cocoapods/ios/ExampleCocoapodsTests/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- en
- CFBundleExecutable
- $(EXECUTABLE_NAME)
- CFBundleIdentifier
- $(PRODUCT_BUNDLE_IDENTIFIER)
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- $(PRODUCT_NAME)
- CFBundlePackageType
- BNDL
- CFBundleShortVersionString
- 1.0
- CFBundleSignature
- ????
- CFBundleVersion
- 1
-
-
diff --git a/examples/cocoapods/ios/Podfile b/examples/cocoapods/ios/Podfile
deleted file mode 100644
index 06ae2e1..0000000
--- a/examples/cocoapods/ios/Podfile
+++ /dev/null
@@ -1,20 +0,0 @@
-# Uncomment the next line to define a global platform for your project
-# platform :ios, '9.0'
-pod 'React', :path => '../node_modules/react-native'
-pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
-
-target 'ExampleCocoapods' do
- # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
- # use_frameworks!
-
- # Pods for ExampleCocoapods
-
- pod 'react-native-date-picker', :path => '../node_modules/react-native-date-picker'
-
- target 'ExampleCocoapodsTests' do
- inherit! :search_paths
- # Pods for testing
- end
-
-end
-
diff --git a/examples/cocoapods/ios/Podfile.lock b/examples/cocoapods/ios/Podfile.lock
deleted file mode 100644
index 0765f39..0000000
--- a/examples/cocoapods/ios/Podfile.lock
+++ /dev/null
@@ -1,30 +0,0 @@
-PODS:
- - React (0.57.7):
- - React/Core (= 0.57.7)
- - react-native-date-picker (2.2.1):
- - React
- - React/Core (0.57.7):
- - yoga (= 0.57.7.React)
- - yoga (0.57.7.React)
-
-DEPENDENCIES:
- - React (from `../node_modules/react-native`)
- - react-native-date-picker (from `../node_modules/react-native-date-picker`)
- - yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-EXTERNAL SOURCES:
- React:
- :path: ../node_modules/react-native
- react-native-date-picker:
- :path: ../node_modules/react-native-date-picker
- yoga:
- :path: ../node_modules/react-native/ReactCommon/yoga
-
-SPEC CHECKSUMS:
- React: 1fe0eb13d90b625d94c3b117c274dcfd2e760e11
- react-native-date-picker: e6ce9225e56a3aeaddc01847be02c7ed1477de58
- yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85
-
-PODFILE CHECKSUM: 74280a6d663f7ca045d2efeeeb62f80c71e4f4bd
-
-COCOAPODS: 1.4.0
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h
deleted file mode 120000
index fc8b03b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h
deleted file mode 120000
index 0c5bbad..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h
deleted file mode 120000
index b8cc7db..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAlertManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAlertManager.h
deleted file mode 120000
index d48ca0d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAlertManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAnimationType.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAnimationType.h
deleted file mode 120000
index 6768bdc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAnimationType.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAppState.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAppState.h
deleted file mode 120000
index 1e2dfd2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAppState.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAppState.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAssert.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAssert.h
deleted file mode 120000
index 4761c46..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAssert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTAssert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h
deleted file mode 120000
index 16d8616..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h
deleted file mode 120000
index 977cac1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h
deleted file mode 120000
index d594a2e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h
deleted file mode 120000
index d01ef1f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h
deleted file mode 120000
index 108d3aa..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge.h
deleted file mode 120000
index 9dc520c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridge.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridge.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h
deleted file mode 120000
index 8d7c3e4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h
deleted file mode 120000
index fb43a0b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h
deleted file mode 120000
index aaa1a01..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h
deleted file mode 120000
index 0235a7d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTClipboard.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTClipboard.h
deleted file mode 120000
index e90e624..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTClipboard.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponent.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponent.h
deleted file mode 120000
index e02cd2e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponent.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTComponent.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponentData.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponentData.h
deleted file mode 120000
index 2758f5c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTComponentData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTComponentData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h
deleted file mode 120000
index 178041a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h
deleted file mode 120000
index 9642fcf..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert.h
deleted file mode 120000
index 6fc180f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTConvert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTConvert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h
deleted file mode 120000
index 1c2b54b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePicker.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePicker.h
deleted file mode 120000
index b5f9b97..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h
deleted file mode 120000
index d6ac8a1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDefines.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDefines.h
deleted file mode 120000
index b3c2a2b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDefines.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTDefines.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDevSettings.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDevSettings.h
deleted file mode 120000
index d139e67..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDevSettings.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h
deleted file mode 120000
index c3a35d5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h
deleted file mode 120000
index e304ba0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h
deleted file mode 120000
index d7d88fb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h
deleted file mode 120000
index 73aea6a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h
deleted file mode 120000
index de3e65c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h
deleted file mode 120000
index 706c933..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h
deleted file mode 120000
index 4eaa898..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h
deleted file mode 120000
index d653014..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFont.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFont.h
deleted file mode 120000
index aac6506..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFont.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTFont.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h
deleted file mode 120000
index fced175..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nManager.h
deleted file mode 120000
index d3c6d62..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h
deleted file mode 120000
index 1bddac1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTImageSource.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTImageSource.h
deleted file mode 120000
index 861fc79..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTImageSource.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTImageSource.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTInvalidating.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTInvalidating.h
deleted file mode 120000
index 285e9af..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTInvalidating.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h
deleted file mode 120000
index 6a80fde..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJSCErrorHandling.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h
deleted file mode 120000
index f6f9c35..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h
deleted file mode 120000
index df7d61c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h
deleted file mode 120000
index 1081962..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h
deleted file mode 120000
index eec188e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h
deleted file mode 120000
index 6217ece..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h
deleted file mode 120000
index 6e324b8..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayout.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayout.h
deleted file mode 120000
index 0d1995c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayout.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTLayout.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h
deleted file mode 120000
index 4700738..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h
deleted file mode 120000
index 3a0db4b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLog.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLog.h
deleted file mode 120000
index ef54a82..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTLog.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTLog.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMacros.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMacros.h
deleted file mode 120000
index 31884e5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMacros.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h
deleted file mode 120000
index ed6f6f9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedView.h
deleted file mode 120000
index a9e271c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h
deleted file mode 120000
index 1507260..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostView.h
deleted file mode 120000
index a47a559..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h
deleted file mode 120000
index 1c70a0f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h
deleted file mode 120000
index 6622147..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalManager.h
deleted file mode 120000
index a043e06..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModalManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleData.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleData.h
deleted file mode 120000
index 2f242b7..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTModuleData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h
deleted file mode 120000
index b2ba8c3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h
deleted file mode 120000
index 16816b9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h
deleted file mode 120000
index 7b5f843..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItem.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItem.h
deleted file mode 120000
index 9c44756..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItem.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavItem.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h
deleted file mode 120000
index 135477f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigator.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigator.h
deleted file mode 120000
index 8391a9a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigator.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavigator.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h
deleted file mode 120000
index 2d9d117..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNullability.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNullability.h
deleted file mode 120000
index 1644ebe..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTNullability.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTNullability.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTParserUtils.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTParserUtils.h
deleted file mode 120000
index 0d2bee9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTParserUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h
deleted file mode 120000
index a1164c4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPicker.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPicker.h
deleted file mode 120000
index c228c4f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPickerManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPickerManager.h
deleted file mode 120000
index 5e7bfa0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPlatform.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPlatform.h
deleted file mode 120000
index 65b7637..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPlatform.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTPlatform.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h
deleted file mode 120000
index 2df7161..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProfile.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProfile.h
deleted file mode 120000
index 23c2683..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProfile.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h
deleted file mode 120000
index 1504fc2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBox.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBox.h
deleted file mode 120000
index a17cd2a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBox.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h
deleted file mode 120000
index 9fbe8ef..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h
deleted file mode 120000
index a44be6e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h
deleted file mode 120000
index 8939ee0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h
deleted file mode 120000
index 68729ee..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootContentView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootContentView.h
deleted file mode 120000
index aa8e212..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootContentView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h
deleted file mode 120000
index cdc4d64..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootView.h
deleted file mode 120000
index f00392e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h
deleted file mode 120000
index 9c6bfdc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h
deleted file mode 120000
index ba4f178..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h
deleted file mode 120000
index 7fa97ad..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h
deleted file mode 120000
index e7cbbf5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h
deleted file mode 120000
index 25bfbdb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h
deleted file mode 120000
index 702a06f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h
deleted file mode 120000
index f853434..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h
deleted file mode 120000
index 49d98f5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h
deleted file mode 120000
index 5a0c7b5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollView.h
deleted file mode 120000
index aff0d45..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h
deleted file mode 120000
index 977f403..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h
deleted file mode 120000
index f4d4370..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h
deleted file mode 120000
index aa7160e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h
deleted file mode 120000
index 6e3801d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h
deleted file mode 120000
index f6c4c7e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h
deleted file mode 120000
index bb8b02d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView.h
deleted file mode 120000
index e6820a5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSlider.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSlider.h
deleted file mode 120000
index 797a6dc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSlider.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSlider.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSliderManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSliderManager.h
deleted file mode 120000
index 94f51b2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSliderManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSourceCode.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSourceCode.h
deleted file mode 120000
index 5d9c5d2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSourceCode.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h
deleted file mode 120000
index b112a8a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurface.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurface.h
deleted file mode 120000
index 3469a1c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurface.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h
deleted file mode 120000
index eab7fee..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h
deleted file mode 120000
index 742fcae..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h
deleted file mode 120000
index 4d7e1e5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h
deleted file mode 120000
index eb63c7b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h
deleted file mode 120000
index 15007b6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h
deleted file mode 120000
index b838430..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h
deleted file mode 120000
index 7da0fa3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h
deleted file mode 120000
index 066b638..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h
deleted file mode 120000
index 9a1c0eb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h
deleted file mode 120000
index 87e50e4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitch.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitch.h
deleted file mode 120000
index c04332f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitch.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSwitch.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h
deleted file mode 120000
index 20ab2fc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBar.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBar.h
deleted file mode 120000
index 63c56ac..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBar.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBar.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h
deleted file mode 120000
index 65c19c6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h
deleted file mode 120000
index 6db87be..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h
deleted file mode 120000
index db41d5c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h
deleted file mode 120000
index d1bb3cf..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTiming.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTiming.h
deleted file mode 120000
index 00772a3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTiming.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTTiming.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h
deleted file mode 120000
index cde251e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h
deleted file mode 120000
index 6c291d4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManager.h
deleted file mode 120000
index c238e75..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h
deleted file mode 120000
index 1d1d386..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h
deleted file mode 120000
index 2637880..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIUtils.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIUtils.h
deleted file mode 120000
index 42d7250..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUIUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h
deleted file mode 120000
index 8c89460..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h
deleted file mode 120000
index 25629f6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUtils.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUtils.h
deleted file mode 120000
index ae80f11..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTVersion.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTVersion.h
deleted file mode 120000
index 7294e61..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTVersion.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTVersion.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTView.h
deleted file mode 120000
index b4fe456..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTViewManager.h
deleted file mode 120000
index 171cb69..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebView.h
deleted file mode 120000
index c249385..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h
deleted file mode 120000
index f4e857a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebView.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebView.h
deleted file mode 120000
index b7f894c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWebView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h
deleted file mode 120000
index 188c2c6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h
deleted file mode 120000
index 1d77dd8..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+Private.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+Private.h
deleted file mode 120000
index 3018914..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+Private.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/UIView+Private.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+React.h b/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+React.h
deleted file mode 120000
index 2766d83..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/React/React/UIView+React.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/UIView+React.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/DatePicker.h b/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/DatePicker.h
deleted file mode 120000
index 87908de..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/DatePicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native-date-picker/ios/RNDatePicker/DatePicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/RNDatePickerManager.h b/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/RNDatePickerManager.h
deleted file mode 120000
index a5135aa..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/react-native-date-picker/RNDatePickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native-date-picker/ios/RNDatePicker/RNDatePickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Utils.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/Utils.h
deleted file mode 120000
index 3ef3620..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Utils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Utils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGConfig.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGConfig.h
deleted file mode 120000
index a6d72ad..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGConfig.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGConfig.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGEnums.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGEnums.h
deleted file mode 120000
index b10f998..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGEnums.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGFloatOptional.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGFloatOptional.h
deleted file mode 120000
index 915d69c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGFloatOptional.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGFloatOptional.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGLayout.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGLayout.h
deleted file mode 120000
index e68f6bd..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGLayout.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGMacros.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGMacros.h
deleted file mode 120000
index 3c8ad5a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGMacros.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNode.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNode.h
deleted file mode 120000
index e8c3a95..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNode.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNodePrint.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNodePrint.h
deleted file mode 120000
index da1691e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGNodePrint.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGStyle.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGStyle.h
deleted file mode 120000
index d2773e2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/YGStyle.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga-internal.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga-internal.h
deleted file mode 120000
index 4568c5b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga-internal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga.h b/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga.h
deleted file mode 120000
index d870fc6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Private/yoga/Yoga.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h
deleted file mode 120000
index fc8b03b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h
deleted file mode 120000
index 0c5bbad..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h
deleted file mode 120000
index b8cc7db..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAlertManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAlertManager.h
deleted file mode 120000
index d48ca0d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAlertManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAnimationType.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAnimationType.h
deleted file mode 120000
index 6768bdc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAnimationType.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAppState.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAppState.h
deleted file mode 120000
index 1e2dfd2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAppState.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAppState.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAssert.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAssert.h
deleted file mode 120000
index 4761c46..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAssert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTAssert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h
deleted file mode 120000
index 16d8616..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h
deleted file mode 120000
index 977cac1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h
deleted file mode 120000
index d594a2e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h
deleted file mode 120000
index d01ef1f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h
deleted file mode 120000
index 108d3aa..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge.h
deleted file mode 120000
index 9dc520c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridge.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridge.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h
deleted file mode 120000
index 8d7c3e4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h
deleted file mode 120000
index fb43a0b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h
deleted file mode 120000
index aaa1a01..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h
deleted file mode 120000
index 0235a7d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTClipboard.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTClipboard.h
deleted file mode 120000
index e90e624..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTClipboard.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponent.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponent.h
deleted file mode 120000
index e02cd2e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponent.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTComponent.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponentData.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponentData.h
deleted file mode 120000
index 2758f5c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTComponentData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTComponentData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h
deleted file mode 120000
index 178041a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h
deleted file mode 120000
index 9642fcf..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert.h
deleted file mode 120000
index 6fc180f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTConvert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTConvert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h
deleted file mode 120000
index 1c2b54b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePicker.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePicker.h
deleted file mode 120000
index b5f9b97..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h
deleted file mode 120000
index d6ac8a1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDefines.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDefines.h
deleted file mode 120000
index b3c2a2b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDefines.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTDefines.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDevSettings.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDevSettings.h
deleted file mode 120000
index d139e67..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDevSettings.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h
deleted file mode 120000
index c3a35d5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h
deleted file mode 120000
index e304ba0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h
deleted file mode 120000
index d7d88fb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h
deleted file mode 120000
index 73aea6a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h
deleted file mode 120000
index de3e65c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h
deleted file mode 120000
index 706c933..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h
deleted file mode 120000
index 4eaa898..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h
deleted file mode 120000
index d653014..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFont.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFont.h
deleted file mode 120000
index aac6506..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFont.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTFont.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h
deleted file mode 120000
index fced175..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nManager.h
deleted file mode 120000
index d3c6d62..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h
deleted file mode 120000
index 1bddac1..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTImageSource.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTImageSource.h
deleted file mode 120000
index 861fc79..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTImageSource.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTImageSource.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTInvalidating.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTInvalidating.h
deleted file mode 120000
index 285e9af..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTInvalidating.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h
deleted file mode 120000
index 6a80fde..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJSCErrorHandling.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h
deleted file mode 120000
index f6f9c35..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h
deleted file mode 120000
index df7d61c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h
deleted file mode 120000
index 1081962..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h
deleted file mode 120000
index eec188e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h
deleted file mode 120000
index 6217ece..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h
deleted file mode 120000
index 6e324b8..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayout.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayout.h
deleted file mode 120000
index 0d1995c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayout.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTLayout.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h
deleted file mode 120000
index 4700738..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h
deleted file mode 120000
index 3a0db4b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLog.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLog.h
deleted file mode 120000
index ef54a82..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTLog.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTLog.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMacros.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMacros.h
deleted file mode 120000
index 31884e5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMacros.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h
deleted file mode 120000
index ed6f6f9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedView.h
deleted file mode 120000
index a9e271c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h
deleted file mode 120000
index 1507260..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostView.h
deleted file mode 120000
index a47a559..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h
deleted file mode 120000
index 1c70a0f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h
deleted file mode 120000
index 6622147..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalManager.h
deleted file mode 120000
index a043e06..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModalManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTModalManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleData.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleData.h
deleted file mode 120000
index 2f242b7..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTModuleData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h
deleted file mode 120000
index b2ba8c3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h
deleted file mode 120000
index 16816b9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h
deleted file mode 120000
index 7b5f843..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItem.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItem.h
deleted file mode 120000
index 9c44756..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItem.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavItem.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h
deleted file mode 120000
index 135477f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigator.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigator.h
deleted file mode 120000
index 8391a9a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigator.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavigator.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h
deleted file mode 120000
index 2d9d117..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNullability.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNullability.h
deleted file mode 120000
index 1644ebe..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTNullability.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTNullability.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTParserUtils.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTParserUtils.h
deleted file mode 120000
index 0d2bee9..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTParserUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h
deleted file mode 120000
index a1164c4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPicker.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPicker.h
deleted file mode 120000
index c228c4f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPickerManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPickerManager.h
deleted file mode 120000
index 5e7bfa0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPlatform.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPlatform.h
deleted file mode 120000
index 65b7637..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPlatform.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTPlatform.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h
deleted file mode 120000
index 2df7161..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProfile.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProfile.h
deleted file mode 120000
index 23c2683..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProfile.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h
deleted file mode 120000
index 1504fc2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBox.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBox.h
deleted file mode 120000
index a17cd2a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBox.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h
deleted file mode 120000
index 9fbe8ef..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h
deleted file mode 120000
index a44be6e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h
deleted file mode 120000
index 8939ee0..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h
deleted file mode 120000
index 68729ee..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootContentView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootContentView.h
deleted file mode 120000
index aa8e212..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootContentView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h
deleted file mode 120000
index cdc4d64..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootView.h
deleted file mode 120000
index f00392e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h
deleted file mode 120000
index 9c6bfdc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h
deleted file mode 120000
index ba4f178..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h
deleted file mode 120000
index 7fa97ad..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h
deleted file mode 120000
index e7cbbf5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h
deleted file mode 120000
index 25bfbdb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h
deleted file mode 120000
index 702a06f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h
deleted file mode 120000
index f853434..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h
deleted file mode 120000
index 49d98f5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h
deleted file mode 120000
index 5a0c7b5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollView.h
deleted file mode 120000
index aff0d45..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h
deleted file mode 120000
index 977f403..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h
deleted file mode 120000
index f4d4370..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h
deleted file mode 120000
index aa7160e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h
deleted file mode 120000
index 6e3801d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h
deleted file mode 120000
index f6c4c7e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h
deleted file mode 120000
index bb8b02d..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView.h
deleted file mode 120000
index e6820a5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSlider.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSlider.h
deleted file mode 120000
index 797a6dc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSlider.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSlider.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSliderManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSliderManager.h
deleted file mode 120000
index 94f51b2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSliderManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSourceCode.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSourceCode.h
deleted file mode 120000
index 5d9c5d2..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSourceCode.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h
deleted file mode 120000
index b112a8a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurface.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurface.h
deleted file mode 120000
index 3469a1c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurface.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h
deleted file mode 120000
index eab7fee..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h
deleted file mode 120000
index 742fcae..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h
deleted file mode 120000
index 4d7e1e5..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h
deleted file mode 120000
index eb63c7b..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h
deleted file mode 120000
index 15007b6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h
deleted file mode 120000
index b838430..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h
deleted file mode 120000
index 7da0fa3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h
deleted file mode 120000
index 066b638..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h
deleted file mode 120000
index 9a1c0eb..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h
deleted file mode 120000
index 87e50e4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitch.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitch.h
deleted file mode 120000
index c04332f..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitch.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSwitch.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h
deleted file mode 120000
index 20ab2fc..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBar.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBar.h
deleted file mode 120000
index 63c56ac..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBar.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBar.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h
deleted file mode 120000
index 65c19c6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h
deleted file mode 120000
index 6db87be..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h
deleted file mode 120000
index db41d5c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h
deleted file mode 120000
index d1bb3cf..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTiming.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTiming.h
deleted file mode 120000
index 00772a3..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTiming.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTTiming.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h
deleted file mode 120000
index cde251e..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h
deleted file mode 120000
index 6c291d4..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManager.h
deleted file mode 120000
index c238e75..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h
deleted file mode 120000
index 1d1d386..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h
deleted file mode 120000
index 2637880..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIUtils.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIUtils.h
deleted file mode 120000
index 42d7250..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUIUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h
deleted file mode 120000
index 8c89460..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h
deleted file mode 120000
index 25629f6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUtils.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUtils.h
deleted file mode 120000
index ae80f11..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTUtils.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTUtils.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTVersion.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTVersion.h
deleted file mode 120000
index 7294e61..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTVersion.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Base/RCTVersion.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTView.h
deleted file mode 120000
index b4fe456..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTViewManager.h
deleted file mode 120000
index 171cb69..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebView.h
deleted file mode 120000
index c249385..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h
deleted file mode 120000
index f4e857a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebView.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebView.h
deleted file mode 120000
index b7f894c..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebView.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWebView.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h
deleted file mode 120000
index 188c2c6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h
deleted file mode 120000
index 1d77dd8..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+Private.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+Private.h
deleted file mode 120000
index 3018914..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+Private.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/UIView+Private.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+React.h b/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+React.h
deleted file mode 120000
index 2766d83..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/React/React/UIView+React.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../../node_modules/react-native/React/Views/UIView+React.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/DatePicker.h b/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/DatePicker.h
deleted file mode 120000
index 87908de..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/DatePicker.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native-date-picker/ios/RNDatePicker/DatePicker.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/RNDatePickerManager.h b/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/RNDatePickerManager.h
deleted file mode 120000
index a5135aa..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/react-native-date-picker/RNDatePickerManager.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native-date-picker/ios/RNDatePicker/RNDatePickerManager.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGEnums.h b/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGEnums.h
deleted file mode 120000
index b10f998..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGEnums.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGMacros.h b/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGMacros.h
deleted file mode 120000
index 3c8ad5a..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/yoga/YGMacros.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Headers/Public/yoga/Yoga.h b/examples/cocoapods/ios/Pods/Headers/Public/yoga/Yoga.h
deleted file mode 120000
index d870fc6..0000000
--- a/examples/cocoapods/ios/Pods/Headers/Public/yoga/Yoga.h
+++ /dev/null
@@ -1 +0,0 @@
-../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h
\ No newline at end of file
diff --git a/examples/cocoapods/ios/Pods/Local Podspecs/React.podspec.json b/examples/cocoapods/ios/Pods/Local Podspecs/React.podspec.json
deleted file mode 100644
index b810388..0000000
--- a/examples/cocoapods/ios/Pods/Local Podspecs/React.podspec.json
+++ /dev/null
@@ -1,528 +0,0 @@
-{
- "name": "React",
- "version": "0.57.7",
- "summary": "A framework for building native apps using React",
- "description": "React Native apps are built using the React JS\nframework, and render directly to native UIKit\nelements using a fully asynchronous architecture.\nThere is no browser and no HTML. We have picked what\nwe think is the best set of features from these and\nother technologies to build what we hope to become\nthe best product development framework available,\nwith an emphasis on iteration speed, developer\ndelight, continuity of technology, and absolutely\nbeautiful and fast products with no compromises in\nquality or capability.",
- "homepage": "http://facebook.github.io/react-native/",
- "license": "MIT",
- "authors": "Facebook",
- "source": {
- "git": "https://github.com/facebook/react-native.git",
- "tag": "v0.57.7"
- },
- "default_subspecs": "Core",
- "requires_arc": true,
- "platforms": {
- "ios": "9.0",
- "tvos": "9.2"
- },
- "pod_target_xcconfig": {
- "CLANG_CXX_LANGUAGE_STANDARD": "c++14"
- },
- "preserve_paths": [
- "package.json",
- "LICENSE",
- "LICENSE-docs"
- ],
- "cocoapods_version": ">= 1.2.0",
- "subspecs": [
- {
- "name": "Core",
- "dependencies": {
- "yoga": [
- "0.57.7.React"
- ]
- },
- "source_files": "React/**/*.{c,h,m,mm,S,cpp}",
- "exclude_files": [
- "**/__tests__/*",
- "IntegrationTests/*",
- "React/DevSupport/*",
- "React/Inspector/*",
- "ReactCommon/yoga/*",
- "React/Cxx*/*",
- "React/Fabric/**/*"
- ],
- "ios": {
- "exclude_files": "React/**/RCTTV*.*"
- },
- "tvos": {
- "exclude_files": [
- "React/Modules/RCTClipboard*",
- "React/Views/RCTDatePicker*",
- "React/Views/RCTPicker*",
- "React/Views/RCTRefreshControl*",
- "React/Views/RCTSlider*",
- "React/Views/RCTSwitch*",
- "React/Views/RCTWebView*"
- ]
- },
- "header_dir": "React",
- "frameworks": "JavaScriptCore",
- "libraries": "stdc++",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\""
- }
- },
- {
- "name": "CxxBridge",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ],
- "React/Core": [
-
- ],
- "React/cxxreact": [
-
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "private_header_files": "React/Cxx*/*.h",
- "source_files": "React/Cxx*/*.{h,m,mm}"
- },
- {
- "name": "DevSupport",
- "dependencies": {
- "React/Core": [
-
- ],
- "React/RCTWebSocket": [
-
- ]
- },
- "source_files": [
- "React/DevSupport/*",
- "React/Inspector/*"
- ]
- },
- {
- "name": "RCTFabric",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ],
- "React/Core": [
-
- ],
- "React/fabric": [
-
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "React/Fabric/**/*.{c,h,m,mm,S,cpp}",
- "exclude_files": "**/tests/*",
- "header_dir": "React",
- "frameworks": "JavaScriptCore",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\""
- }
- },
- {
- "name": "tvOS",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "React/**/RCTTV*.{h,m}"
- },
- {
- "name": "jschelpers",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ],
- "React/PrivateDatabase": [
-
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/jschelpers/*.{cpp,h}",
- "private_header_files": "ReactCommon/jschelpers/*.h",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\""
- },
- "frameworks": "JavaScriptCore"
- },
- {
- "name": "jsinspector",
- "source_files": "ReactCommon/jsinspector/*.{cpp,h}",
- "private_header_files": "ReactCommon/jsinspector/*.h",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\""
- }
- },
- {
- "name": "PrivateDatabase",
- "source_files": "ReactCommon/privatedata/*.{cpp,h}",
- "private_header_files": "ReactCommon/privatedata/*.h",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\""
- }
- },
- {
- "name": "cxxreact",
- "dependencies": {
- "React/jschelpers": [
-
- ],
- "React/jsinspector": [
-
- ],
- "boost-for-react-native": [
- "1.63.0"
- ],
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/cxxreact/*.{cpp,h}",
- "exclude_files": "ReactCommon/cxxreact/SampleCxxModule.*",
- "private_header_files": "ReactCommon/cxxreact/*.h",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "fabric",
- "subspecs": [
- {
- "name": "activityindicator",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/activityindicator/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/activityindicator",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "attributedstring",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/attributedstring/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/attributedstring",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "core",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/core/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/core",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "debug",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/debug/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/debug",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "graphics",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/graphics/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/graphics",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "scrollview",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/scrollview/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/scrollview",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "text",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/text/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/text",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "textlayoutmanager",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/textlayoutmanager/**/*.{cpp,h,mm}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/textlayoutmanager",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "uimanager",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/uimanager/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/uimanager",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "view",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ],
- "yoga": [
-
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/view/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/view",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- }
- ]
- },
- {
- "name": "RCTFabricSample",
- "dependencies": {
- "Folly": [
- "2016.10.31.00"
- ]
- },
- "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
- "source_files": "ReactCommon/fabric/sample/**/*.{cpp,h}",
- "exclude_files": "**/tests/*",
- "header_dir": "fabric/sample",
- "pod_target_xcconfig": {
- "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\""
- }
- },
- {
- "name": "ART",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/ART/**/*.{h,m}"
- },
- {
- "name": "RCTActionSheet",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/ActionSheetIOS/*.{h,m}"
- },
- {
- "name": "RCTAnimation",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/NativeAnimation/{Drivers/*,Nodes/*,*}.{h,m}",
- "header_dir": "RCTAnimation"
- },
- {
- "name": "RCTBlob",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Blob/*.{h,m,mm}",
- "preserve_paths": "Libraries/Blob/*.js"
- },
- {
- "name": "RCTCameraRoll",
- "dependencies": {
- "React/Core": [
-
- ],
- "React/RCTImage": [
-
- ]
- },
- "source_files": "Libraries/CameraRoll/*.{h,m}"
- },
- {
- "name": "RCTGeolocation",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Geolocation/*.{h,m}"
- },
- {
- "name": "RCTImage",
- "dependencies": {
- "React/Core": [
-
- ],
- "React/RCTNetwork": [
-
- ]
- },
- "source_files": "Libraries/Image/*.{h,m}"
- },
- {
- "name": "RCTNetwork",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Network/*.{h,m,mm}"
- },
- {
- "name": "RCTPushNotification",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/PushNotificationIOS/*.{h,m}"
- },
- {
- "name": "RCTSettings",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Settings/*.{h,m}"
- },
- {
- "name": "RCTText",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Text/**/*.{h,m}"
- },
- {
- "name": "RCTVibration",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/Vibration/*.{h,m}"
- },
- {
- "name": "RCTWebSocket",
- "dependencies": {
- "React/Core": [
-
- ],
- "React/RCTBlob": [
-
- ],
- "React/fishhook": [
-
- ]
- },
- "source_files": "Libraries/WebSocket/*.{h,m}"
- },
- {
- "name": "fishhook",
- "header_dir": "fishhook",
- "source_files": "Libraries/fishhook/*.{h,c}"
- },
- {
- "name": "RCTLinkingIOS",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/LinkingIOS/*.{h,m}"
- },
- {
- "name": "RCTTest",
- "dependencies": {
- "React/Core": [
-
- ]
- },
- "source_files": "Libraries/RCTTest/**/*.{h,m}",
- "frameworks": "XCTest"
- },
- {
- "name": "_ignore_me_subspec_for_linting_",
- "dependencies": {
- "React/Core": [
-
- ],
- "React/CxxBridge": [
-
- ]
- }
- }
- ]
-}
diff --git a/examples/cocoapods/ios/Pods/Local Podspecs/react-native-date-picker.podspec.json b/examples/cocoapods/ios/Pods/Local Podspecs/react-native-date-picker.podspec.json
deleted file mode 100644
index f4dbadb..0000000
--- a/examples/cocoapods/ios/Pods/Local Podspecs/react-native-date-picker.podspec.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "name": "react-native-date-picker",
- "version": "2.2.1",
- "summary": "React Native Date Picker component for Android and iOS",
- "authors": {
- "henninghall": "henning.hall@hotmail.com"
- },
- "homepage": "https://github.com/henninghall/react-native-date-picker",
- "license": "MIT",
- "platforms": {
- "ios": "8.0"
- },
- "source": {
- "git": "https://github.com/henninghall/react-native-date-picker.git"
- },
- "source_files": "ios/RNDatePicker/*.{h,m}",
- "dependencies": {
- "React": [
-
- ]
- }
-}
diff --git a/examples/cocoapods/ios/Pods/Local Podspecs/yoga.podspec.json b/examples/cocoapods/ios/Pods/Local Podspecs/yoga.podspec.json
deleted file mode 100644
index 519c1bc..0000000
--- a/examples/cocoapods/ios/Pods/Local Podspecs/yoga.podspec.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "name": "yoga",
- "version": "0.57.7.React",
- "license": {
- "type": "MIT"
- },
- "homepage": "https://facebook.github.io/yoga/",
- "documentation_url": "https://facebook.github.io/yoga/docs/api/c/",
- "summary": "Yoga is a cross-platform layout engine which implements Flexbox.",
- "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.",
- "authors": "Facebook",
- "source": {
- "git": "https://github.com/facebook/react-native.git",
- "tag": "v0.57.7"
- },
- "module_name": "yoga",
- "requires_arc": false,
- "compiler_flags": [
- "-fno-omit-frame-pointer",
- "-fexceptions",
- "-Wall",
- "-Werror",
- "-std=c++1y",
- "-fPIC"
- ],
- "platforms": {
- "ios": "9.0",
- "tvos": "9.2"
- },
- "source_files": "yoga/**/*.{cpp,h}",
- "public_header_files": "yoga/{Yoga,YGEnums,YGMacros}.h"
-}
diff --git a/examples/cocoapods/ios/Pods/Manifest.lock b/examples/cocoapods/ios/Pods/Manifest.lock
deleted file mode 100644
index 0765f39..0000000
--- a/examples/cocoapods/ios/Pods/Manifest.lock
+++ /dev/null
@@ -1,30 +0,0 @@
-PODS:
- - React (0.57.7):
- - React/Core (= 0.57.7)
- - react-native-date-picker (2.2.1):
- - React
- - React/Core (0.57.7):
- - yoga (= 0.57.7.React)
- - yoga (0.57.7.React)
-
-DEPENDENCIES:
- - React (from `../node_modules/react-native`)
- - react-native-date-picker (from `../node_modules/react-native-date-picker`)
- - yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-EXTERNAL SOURCES:
- React:
- :path: ../node_modules/react-native
- react-native-date-picker:
- :path: ../node_modules/react-native-date-picker
- yoga:
- :path: ../node_modules/react-native/ReactCommon/yoga
-
-SPEC CHECKSUMS:
- React: 1fe0eb13d90b625d94c3b117c274dcfd2e760e11
- react-native-date-picker: e6ce9225e56a3aeaddc01847be02c7ed1477de58
- yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85
-
-PODFILE CHECKSUM: 74280a6d663f7ca045d2efeeeb62f80c71e4f4bd
-
-COCOAPODS: 1.4.0
diff --git a/examples/cocoapods/ios/Pods/Pods.xcodeproj/project.pbxproj b/examples/cocoapods/ios/Pods/Pods.xcodeproj/project.pbxproj
deleted file mode 100644
index e74d245..0000000
--- a/examples/cocoapods/ios/Pods/Pods.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,2200 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 00A78C150C08CE1FFC8D97A46391A075 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 2661BFC1495DB0097400399605FE7973 /* RCTBorderDrawing.m */; };
- 00D00346EDD83B2F35A895D3A2DFE255 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F6077058179095D007458952BA3D85 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0140C0F4F922D7D579A492A5A8BE8D51 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9ECCE4E37443D2BB53E73375D97B20B7 /* RCTProfileTrampoline-arm.S */; };
- 0387AEF76716F3C5711658219B032086 /* RNDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3D50228874A2BF009E9AF3E0B913DF /* RNDatePickerManager.m */; };
- 03B483B951C58A4A97912DF6C84CB859 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 896CACD6531B91258677CE6D9E496288 /* RCTProgressViewManager.m */; };
- 0495B7A30154C36BB3C668F56C942360 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B53A15A241FD8AAFB51191B67D365185 /* Foundation.framework */; };
- 04E2E0FEBBFBDE649E493738F77EEBD9 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAD330ED03DED396C4EBE3059971AD9 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 05F32BEB2BAABE1FE75F3FBA54932ECE /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F80569CD79C755CB4CF39F911E5759B /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 06784C618C588BEE8825C8109C2B2B28 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C95D5FD72C4C96D0166B84E0AE170AC /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 094F994735590134821D90348F9D7C8C /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = A0EF736F4C27DBC148245FBA44A3551B /* RCTKeyCommands.m */; };
- 0AFB057F02EF86F307CED8F2E41BFA15 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E19DE149F520B89CE528C1E71F28A0 /* RCTMultipartDataTask.m */; };
- 0B73F6171E273AD274B95362A0147DD7 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AC0B1F5ED9E4093C1AE3F59008494EB7 /* RCTLayoutAnimation.m */; };
- 0C03D87DCC2C7F12506407ED86E5B1A4 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A21198E67566BD862F4B62497A81FEB0 /* RCTActivityIndicatorViewManager.m */; };
- 0C66C3B00B51DEE7438E28C4B2D14B4A /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8184A1CD846826B1EA39DC0252DF16A5 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0C9B74AB06AAE9994CC9A81BE0C2D6F6 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 6870634CA04EC3CFE193A0F3016E14F3 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0EDC6CBB097A745B3491D5B9922F7F51 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BAADB69A007D86CC8889507C1BDC2C84 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 10063BCEA3CC0B40C512FF418F1474CC /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B425E17FB4A90FD0748EEBE38F31EEBE /* RCTSurfaceRootView.mm */; };
- 1071825D0B764530FB36B8695E6F279D /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A93B3421A59B63A51E97A189621122 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 11953204E0F439444218385885B117DB /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7026E7015EA4A60A113766E201859482 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 11D2EF8008DAEFDD571BFBA9EF89A95C /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1981D4436F6873413EB17661941200B1 /* RCTRefreshControl.m */; };
- 12CE2F23397553B26E388BB5506D0839 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 759B51FCC190B5C5D9FDBD54A7D6B0C2 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 12D1A4C551F199FE46E6AB6111CDDFAE /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7925E307BEFD4CCCC7C588A3252C5075 /* RCTMaskedViewManager.m */; };
- 1448783EDAF4078D8082A523BA659F5D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F677E4027F8EEB768E94912EDDB4158 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 146ADEF145A5009F864F97C5437B692B /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC7A7C464FC20FFE108A7939DFA2366 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 14C19537674851EAC0733056A644BD6D /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 8144D31597F629DE02D736F775F25050 /* RCTKeyboardObserver.m */; };
- 1680E242EF372B580A9C617342A595E8 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 16EFC544082772529595724E92860BB2 /* RCTScrollContentView.m */; };
- 168789157F19529AB7AE4922A47C7224 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A46060C4D5F353D9C317BD2021CA3279 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- 1799FF6E5F4AB68D6D3FFB8D69D6840F /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 24866CF4F30FC925EA4D16610D77B26F /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 18B9FA379B8CE86D3A5EC3E33D9775DD /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = F13EA44D4D9AF0F8222A246FE729C6AC /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 19DAC145F872BA4CBFD1D953A55D3C58 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC5656772736B527EE5CCAE5BBF2CBF /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 19EB84C0463964F70496B9B637B598E4 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC777FBD545DE6B96E686AE2BFD209D /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1A11ABB39FB60004FEA6445E70DA5D87 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 7387A3852D4C419DADD23FCCF8B6FC29 /* RCTReloadCommand.m */; };
- 1A35FE0A42BCD56BA2EB00CD17AC9945 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DBB3E721BFDC4B6AC1C8907A05C549E /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1B0CB505EFE2A3C364FFABE3CA7A3B4F /* RCTWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1D24E5E14C532A7BA79D220FD72836 /* RCTWKWebView.m */; };
- 1BCD33D95B39D485819C9F48850D2173 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A7213F14BE242F78A79BE944D004CF /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1C2969C197EC99C7987E6166083C461A /* RCTNavItem.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5CEB5AEA46E9473A585F71AD6E29AE /* RCTNavItem.m */; };
- 1CC77C0DA696C0A9B7FF4BA1C95D505F /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 14D8317C3081541A8F2625B2C3C765DD /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1F7934DAB2771B54C10DEC6687B103FF /* RCTJSCSamplingProfiler.m in Sources */ = {isa = PBXBuildFile; fileRef = B72EF548E4DA03242078A65B298B5EF2 /* RCTJSCSamplingProfiler.m */; };
- 2292EBC0CF549F256545439206AA31F3 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2805CEF9C9B5788CB3ACAD311DDF4555 /* RCTSurfaceStage.m */; };
- 25BFDB8653EE1F4E21599FAA92AA7812 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C0BFA70D23270C8F3AC3394DB9E6C6 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2756D865FE6EA1D6B048DF088DA39B86 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0D562EF0519C178D21AF6AA907F1A3C /* RCTModuleMethod.mm */; };
- 27A3C03437041734622FA597C509DF65 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 394C6AB2D4F8336F22AF0C1EE0A0B3D2 /* RCTManagedPointer.mm */; };
- 27E5797D56B7C8705EF4A8CAB0413457 /* RCTTabBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5BF0210512317C92105B588BA24BC8 /* RCTTabBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2948BEA2C8E85E3F221BE61034101D93 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EBBFE0B223EE0E6EF8B0F6B3A59D8BE4 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 297062C00C857B8E66AD063EEF09CDA8 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = AB940BA0C5443D4D956188EA959DB9B7 /* RCTPerfMonitor.m */; };
- 29FFE414BE765AD43ECB04690B6B3FB5 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 095349663DF5833A65BD655035915F3D /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2AF632A540DDF443E9FD7F9E786CF423 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C45CD6D17945A67960875D8EC30E22B /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2B147CAAAFB6C051FFCB49FD14549639 /* RCTTabBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = B355D5B7A01EFE17EA8EE0A40F7EE64B /* RCTTabBarItem.m */; };
- 2D57FB061F888114FB58B6430634A06B /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F0956C783C6F77ECC8EB6B1597B08956 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2DBF473F787BF15E4D776E499932EC41 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9246EA2DE23E3049E232471B67382678 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2E44F140C02908F0A679B81E58C85DB7 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8346042812C7608C73C74C27667E26 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2EC3B8C3DF0B2FBB90EE626727B1373F /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D88E312B884043340A9D55E70AA57AB /* RCTCxxConvert.m */; };
- 301EDA12398A4538678B39273B5A6780 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA07491EDD206BCB5141729CFCF2627 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3120FF1CDC93FCCA87984B5279AD991A /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 92E6EDBE9D9FEF8629F5509012803CD8 /* RCTDatePicker.m */; };
- 323284700371C81D8B6541ED353EBC5E /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B49ABFED98D201E4BF2D7620F86736E8 /* RCTI18nManager.m */; };
- 34649AA17441DBDEA446E776BCB02A6A /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC08BD13C2F65EB727CB1726D0510EC4 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 35C6DEB7943F1490682108DFCF19020D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 16525D0575CB70A72F5A18F6ADB740BD /* RCTTouchHandler.m */; };
- 368C4F81C8D027179986E3CA9396FB96 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3F8C43BAC9431E500696F99C4B88E7 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 36F3411D73712614A58A18576909FF26 /* RCTTabBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 89254FFC2A2B6ADD513D5D92D2C5465C /* RCTTabBar.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 38D12B13B0326FCECACCAAB09095E0B9 /* RCTJSCErrorHandling.h in Headers */ = {isa = PBXBuildFile; fileRef = CC672F9C412C22130DE12AF0099E0A2F /* RCTJSCErrorHandling.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3917656467E65481157C8E80CEAC6667 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F7C3EE5ADFC30120427DA34724527C7 /* RCTTouchEvent.m */; };
- 39CCE7A5AF80F95152333A320E553D2D /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFFD233A08D6A4A531C39E109FCE750 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 39E8CAAB2C18211322177FC6E881FE04 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C7E8807AF289D3CBE50368FA91F1E6B /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3B01FF688A4E69B4F66F4317D11F2841 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 5665B688D95296187243DC5325A66560 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3B0237974C0F96BF986B92EA9C758149 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = EE660BB2681A4CA11C5492D36502834C /* RCTSwitch.m */; };
- 3C1EA0F9C318B86DA96D01EE2E363B62 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 529837C4E50980E9BAD968B964553F61 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3D4FFC2D2EDC763BF5FE1A5434C76BC3 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F118BB3B4CA352FEDABD612340A3FBE7 /* RCTParserUtils.m */; };
- 3DA548E0670875F650F8D5B8488EC41D /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 8271B73EADC956399FE69F70E4F036AC /* RCTProfile.m */; };
- 3E05756245DA1EB47F3DC775861E5AB4 /* React-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7281562E776A53C7C824FE4EA0B342F4 /* React-dummy.m */; };
- 3F45E6E5BECC62B6EC44254A7D72D1A1 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 84384B9BC088375908F1AAFB7EDA8192 /* RCTSurface.mm */; };
- 42E7B1D18E5A8F93F573AA4CEDFF5F5A /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1512BB122BD411B1511616AE01112207 /* RCTShadowView.m */; };
- 42F54EE5F7194513F9862860FCF0F304 /* RCTExceptionsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F526450990C10DFA742B3B71836BC31 /* RCTExceptionsManager.m */; };
- 44A09FD9F4E75E1876F252609F087214 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 937886FC6FA693F5719A6D34FBCB6934 /* RCTMultipartStreamReader.m */; };
- 4579BD135283415888410B644140A752 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = F7297D9738D752509457810C8223BEC4 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4673725F464FED6617FBBACA217C2C5D /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FD9525068B97D2811B9F9427C35E8F /* RCTComponentData.m */; };
- 46856CE6021541C8FDB785D6BF1AD4F7 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 78408BD2F442BC6A54EB9B4B9357DDBF /* RCTFrameUpdate.m */; };
- 47ECC8A2463E424E593DF75EE3E5D057 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E3EE04F6297A8B14005B004559360B /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 48DB35576AC6282FE88CA4D9DE03286A /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A78DADE866607FD14A6E7D7A2DC440C /* RCTErrorInfo.m */; };
- 4A73FEADA68F6E699EC021DB0CC0F1CC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 233C85718999C066CB1281B537C10B09 /* UIView+React.m */; };
- 4ADC7580A1D618AB0A25D154A509802E /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 947839FFAA79E38CEC39FCFA3FD63715 /* RCTScrollView.m */; };
- 4B10FE7B066425A61CFF91B6F7562AA5 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 914925E15359862E8D632CB16C49BE71 /* RCTShadowView+Internal.m */; };
- 4B4AFF7E9E321D57E32FEFBF9DBB472B /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B89A95E93D88107DB67671C7441DE805 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4B8864D92447483D3C0BE8F7162F94E0 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A4FB7885C18030415418B03A0ABA0A /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4B9CE951F14E93224716E7F796D89273 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE61C2C7A2FF69928BDDBF1818CEB3CC /* RCTUIManager.m */; };
- 4F0E1F873A25D8A4E742C4E36CA85CB0 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 98242080A1564B2278199F82A6353624 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4FAEF33E372BC6FF9699AD773F02B48B /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE9156308C66074B348BFD43A8A5209 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 504C05403487D18AB61ADC7772C6FF58 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1583722EDE4AF1E8066B043C4D07B0 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 50688B604C35BB254F3B143A7BA68D77 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2C2AE42C9D6EFDBE7DAFBCB73BD75C /* RCTBundleURLProvider.m */; };
- 508CD09B016F171A5DA9B2FB4BC99AEF /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BC904D3C0347D4B4B735FD196FA56FFE /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5153A3D22CCDA0ABBE5170F9AA8589A0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E3439FDB1EB6A4DEB5454F35E954EC /* RCTScrollContentShadowView.m */; };
- 519929230BF67DB7BE6B92D968C0D42B /* RCTNavigator.h in Headers */ = {isa = PBXBuildFile; fileRef = D66AAF974A169D8F7C676E2B688E67FF /* RCTNavigator.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 524AAEFEF34F303D773781FB96070981 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0150D1B14FC4B07E7AA394931E2084 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5256BB03C04058502D2EFB2BDDA36F60 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E607818B2D6C109000001AA9641113D9 /* RCTModalHostViewManager.m */; };
- 5291333F7CE96B27344503101EAA73AA /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = D7135674136663477727E690C83A0B49 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 53230245270696FEB6204F6921D510DC /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C2449AA757176D1A2A61A3E4D5ACA4 /* RCTScrollViewManager.m */; };
- 53AF00C10BFE4440D6579AE89B7A8544 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4E3AC1528D162145D99323382DD5E10 /* JavaScriptCore.framework */; };
- 53E4FACD8FBA1DB80E6D8AAE7A3B9426 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FB34EC6886B057AE4C8E7C6D4A641F /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 546D0E19BDBE477C25F629AD852A0971 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DC571DFDD560242C9FA7B9896548F1A /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- 5584524F32F148BD9402F6ED95526393 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C668F84C3A66920EBDBFA2C1466DF8BC /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 56D862FC0438B6316BCD60E0CB03FF3B /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78348EE7EF6B4C0AF54CB4ED4A1C457F /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 56FA2A22B73FDAEC47094B98D0B1797B /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 958F96240F0B45B911852FD7E50BC009 /* RCTSurfaceHostingProxyRootView.mm */; };
- 5A7AA9BB6AEC1529A9F6EB0BFBFA8476 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55111F882A429489BB26E9C742C35E07 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5AA92E04A74BBE75AFE82EF3028BBF0E /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = B08C5BE8F2E37E6840A9A789FAD7DB77 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5ACC7BDD4C4AE2DF3B5BA646D5F169B2 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 69622FC4694FDCC3768671B5A1B709BD /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5CA7AE330A3EA3FA2970174817ACBEAA /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 001D32B76CC676D28073E45CE6453EA0 /* RCTRefreshControlManager.m */; };
- 5D13727D55C76F70DC2991577692B5E3 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EA734C0DF40BCA9333F1F5A5C85190EA /* RCTEventDispatcher.m */; };
- 5DABEC44F9245A7A37D03EF77E6AFBCA /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B722D6720099AE19EDF470A2C5A3E09 /* RCTUIManagerObserverCoordinator.mm */; };
- 5F9852B1595E1619ACC7E68A5F00043B /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 265AE13D30CD2B546DEC22D58B220643 /* RCTFPSGraph.m */; };
- 5FD6B34C74C175EE0FC1EB3E51203170 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C8A94E236E00F7677E35C5268D81DB /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 60743C690FD14076E2C46DA3302C47B5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC1F007D6E6D52E4B840CC63D430B74 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6124BE8E743D869CD10C2DA4B5491102 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DBE3BF381A24E0976ABBCB24E90DBE1 /* RCTAppState.m */; };
- 614996C127A2974335AC1DEE3468E91F /* DatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F91BD92DC93A689F09E6BF32BF0D6A98 /* DatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 614A50EDEC8C1103A7196E5651626E67 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = A53D00A533F2D5008233735C2C21382B /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 63DA0AAD609F8619C872D8063F277041 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0CF579E0535D8B4666910B5B4147B7 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 651814698FD3CA9601ECADCFB44756C6 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A81AAAE15900582001C1A3A7A92A670F /* RCTPickerManager.m */; };
- 666E0475D8B743209BB2636D6CC50E78 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5844F6FAB99B5994BFC716D433D084 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 66AC8E4421833E97872D400A72B133FE /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E21328F622EDB13677DD7DFAA121018 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 67BFB78B4FB4BC1179457F68E4E123E7 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3A27F8539B9B7DC6D58627410EB356 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 682B7D3BB5076F823580BCBD94D16D2A /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F262A199E2A7C56EB148480CBE4962C9 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6836536B06BE14FA220ACB9C58C6CEAE /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F9807E1CA295B96E5E83E0EBDA417C2C /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6B9DCA298907B86A7E18F52E813C4E2B /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 30842F11D11167C5BD73F5D82582C740 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6C69F3A89258C0F79002EA2BA7841A23 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C51FF32ED1B6390B39864A0A822A9B3C /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6EC294CE3437E6131047651636FABB6B /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 50DEC7C700C06AF8A545C39DC9D5B457 /* RCTShadowView+Layout.m */; };
- 6ED4975EC586352935DA24D7052065DE /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = B38A4BC615DB1649A465F0BD3197B01D /* RCTSegmentedControl.m */; };
- 6F6E5F0210E19290E10C220C4AF08676 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8F1F51DB77D882C94B06A51A233672 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6FAED13A744FC099A1F78BDAA4A4D903 /* RCTWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 207EF0F1F1A6BD384DA81A2E9E9CB1A4 /* RCTWebViewManager.m */; };
- 6FECF893DB9601AA2A3AA8F87DFF6C3F /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = FEAB7B22ED68B74B02D5DAB620B4273E /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 7083181C7F7BEA876896EEB017951D38 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F957FCA2CBDF660E05098543366454 /* RCTModalHostViewController.m */; };
- 7197173CAA3D587D88C766C07E743A20 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = A24C30BCC5EE07D610E73B031BF5FEF8 /* RCTActivityIndicatorView.m */; };
- 725B2C1A3D34095BDE08E3F3B1BA5607 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = E96CEAA4103BE34FBF6C6254C3F1E2F6 /* RCTAssert.m */; };
- 73244C581E4D30676C1E28120B594413 /* RCTNavigator.m in Sources */ = {isa = PBXBuildFile; fileRef = 00EA3D3D89FFDD001C16391B86DA5BE3 /* RCTNavigator.m */; };
- 73593C1E0CF7C349E2D7B090400D0D0D /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE93D68C7079DE29B2478D09C9843C4C /* RCTSurfaceHostingView.mm */; };
- 73AECE5A3A7F4BA26ADE9190B2124CFF /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = E47F445B9728C3E00AE842C2974D2A3C /* RCTVersion.m */; };
- 745AB31E5B514C3ECF93DAFD4272A8B4 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C5D10F3785469710AA79F3AF62D612 /* RCTConvert+CoreLocation.m */; };
- 74B0579D5EBFC8BB35452942287BB502 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D3B25E26B648D959E2B86ED575A558 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 74C4006C68179D018E708B5701430E6D /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CBE6E621B1384DE87C07D1E69E1830 /* RCTPicker.m */; };
- 74C90683E30E34B19C4A4FF759E6A109 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA68E7204DA8EADC4713D10DCC41ED6 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 74E20E73519358E1D0A60ADD140B5254 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E8A83362F5CE4F2FBE221613A28D03 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 7567D966F0D2E7EC553895231AF20688 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CB94A0A834270561188D13276C97714 /* RCTUIManagerUtils.m */; };
- 76C43ABFAB80CDB2EBE9F8F8EACDA0FE /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5CC97BF41EB5F0C9D099AC26B630BC /* RCTImageSource.m */; };
- 77725400BEFD5B393F2F2E5497C572F3 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = D833FCEAF7F74D4FBFDA8A5354FECC70 /* RCTProfileTrampoline-i386.S */; };
- 795151A09AD343FB01C3165F0F923712 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B53A15A241FD8AAFB51191B67D365185 /* Foundation.framework */; };
- 7A687AD56B053CCC94235A763B45B019 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D56BA43C91D178FE36514D8E4CCAD3 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 7C910BBFB351F43CBDBAA9A5207E1EA7 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60EBAB4A49BE30EB601A4376AC599BD6 /* RCTFont.mm */; };
- 7E9C626C1AB06E0062F55B946A730ABC /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = DDDCFFAA6D479FCF2379060BC6C3DC82 /* RCTSafeAreaView.m */; };
- 7ED237EB8BBF5972C5AF007A35B82FDF /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = EE564976B2D94CDD61F69FB73FF988BA /* RCTSafeAreaViewLocalData.m */; };
- 7FEF048F835D8FD8341A394B623F7736 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96F7BAE593B9D627F191126A89C369B8 /* RCTModuleData.mm */; };
- 806E27F11FBA7ACE03762F237D3F4289 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC2BEDE92E32EE0501CC776FCB336E92 /* RCTRootView.m */; };
- 80DE8F272B43F34D737756668A62D42D /* react-native-date-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A189FA30B180E89646CD3B022BB6F319 /* react-native-date-picker-dummy.m */; };
- 8101DEF14D1F899625105BCB9751F042 /* RCTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = CC16BE4780EFE3F4B4E7EC3F56624615 /* RCTPlatform.m */; };
- 817FC31F4A5585D8860BF75E28E67F56 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B2BB51FC298B2DBAB9F66139825A1E /* RCTDisplayLink.m */; };
- 81B9691DFBD1539103998BD551E2ECB1 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D14A2C34E3A8F103B0426D86F7518A82 /* RCTAlertManager.m */; };
- 828F57852F1C9C2533B1299FC91E6C5A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D40EC239DD2254A4DAC3225F8BF4721B /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 83576A005A9896AF67826CD29901A67C /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2418BB931F669D5307CF05A08454FCAD /* RCTRootShadowView.m */; };
- 855F420BFE1099D81C89907E27D326A8 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E16A9033B783F27B757FE15793F1604 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 86EDA89E3E90BA97D4D1EA0DABF02A8F /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7175A2B8EBDBA698B0A839CAD430B717 /* RCTJavaScriptLoader.mm */; };
- 87B44E893ACD4A78911584A610D1E520 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3429FDD71FA744536A21709D272208F5 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 88E2A272FCC45B44055C33D45D325990 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAA80CC322C2792EEA162BA16CFD951 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 88FDC223BD3F363CB12F5CD9850C3FF5 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A335D31B2783114432E826338E78474B /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 89A59F500D07AC548FA96676701E9D05 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584C100B59BC67E3C9AA692F918A089 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8B333FA2F4B8DA1135B4013D141E14F8 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = FEBB45796258D3D83D68AD8CD0F0EF26 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8B4B48732AB3BBF690A56A1D1A8DD115 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B3533D1F93DA25ED3D31F1F160AFDFEF /* RCTWrapperViewController.m */; };
- 8B812F32257662B87C0D56BFF489C360 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 924F2346098CA594328CB517AB4CD842 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8CB978AA1B698AB3469FDFF2459C6B6A /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A16B9D4F009A5E517EF55D30B7CE49 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8DA593AB64FFFAD3D6F8F634307E83B9 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 606081CAD69D9114BE0886D03901B0CE /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8EBF917767FC9525A925A2147958C9CF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC6C8E46B5474C3C59D879E4DABB4A9 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8EE82CD7B3D2056D4B6ECDC1E74534A4 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCF8AC1CA53229D7CDED61215A189D6 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8FB6B4455506259EB7AB96810BE5968F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B53A15A241FD8AAFB51191B67D365185 /* Foundation.framework */; };
- 900C54918E9E5505618C121BA02CFFB2 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F20BEFB76DD29C634F9A7F32E88F97D8 /* RCTModalHostView.m */; };
- 91F63665F21D6F7EF5E5ECB607EC2671 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F054D4F3F03D5BB05A643592F6535B9C /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 927E8DC0BB3EBB048F3DBA0D4CEEB70E /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A41350928420BFDE8564501235239420 /* RCTDatePickerManager.m */; };
- 928A7BBCB134D3DEE551B1ADDB66C825 /* Pods-ExampleCocoapods-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7C15F9874E6E43C73BCF1D6586FF3E /* Pods-ExampleCocoapods-dummy.m */; };
- 936B556780BFD7A28E396266A2E3F5E0 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 81642AA85896122FA55B739D01AE006A /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 93E7BB49F7694ADEF143FE9BA50CD2F0 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C50A816A40C75A17358E188D2B8244 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 942BAC03FA8DE5F8FB04AA8341404211 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F2AA31ABC7B12141F204F29EB84592 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 94575F3961A1E10D4880A19C79410524 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2054819E7AB2A52BB1C2423A8B5C051 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 958457B0B40A0610570B4F62A715B2DF /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 371257F56A4F46844B7B5CB9FF8F4FCA /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 95B7ABF03B2C4BBD6BA722ED0F46A494 /* RCTWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3582B09B5FFEB2D7C27CBEE5C99A3B /* RCTWKWebViewManager.m */; };
- 95F0DECACAE26EA2FB9E1263AC3A0F94 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D660E9C3B36421F1E379238A34E021 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 96605787A629A45209108FEC89AE3C96 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDAA551A2043CFCF17EA1681B2D5C0FF /* RCTMaskedView.m */; };
- 96B17764F0B2F1B58C52729D776D22E0 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 774DAF38D07416A95D3A2FDCF74112DB /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 96E59FCA959611B450BE2C06FE2F2AB8 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCFBC0FA07D21A9B1F0E6DEEE7BD31B /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 973E6DA88952FEB3B3F0AB541C6FE1CD /* RCTWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC4DAC8BDE251C85B2A74F5B8B3C650C /* RCTWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 982B156E41D166D54DDBCF6C65D95FBB /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F93802C83A958965405BB124A8DC4BD6 /* yoga-dummy.m */; };
- 984D91999DBAEE7A126B36254EE866BF /* RCTTabBarItemManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C42569FF867C2939F4F732C557FF1D03 /* RCTTabBarItemManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 98C5F2DC4ED727E470876CA1602D5516 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A847556A99D08AC67979C210D2F3E461 /* RCTUtils.m */; };
- 98D3A29DE7A37773EC59EFCAD5A63DD2 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 224A6866F81C45FFC64ACCE0C07D905B /* RCTRedBoxExtraDataViewController.m */; };
- 9A8C16252E73055B31B17902855289BE /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E8AC5D0941CBD3AA7052EE40A29208 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 9AB820AB95D503C07761E50FFC644141 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = DD13CD4A9E6AF2C167C155815A1932D2 /* RCTConvert.m */; };
- 9C5C38F4D6044B1B6C70461002F18D0E /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D8151AF54E84634445BD8795CE29F /* RCTDeviceInfo.m */; };
- 9C86DB5D3AE260D39F3678616FB760C3 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 673004059BC3DDA7137EDCC6F8B851AB /* RCTConvert+Transform.m */; };
- 9DA61DEEBDAF54B8920CC0642CB612F7 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1019F62D1DD71169B6CA323AC552955D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 9DEA9F5FA74579E55F3F3E651E7EE243 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FB9298A062CBB7F0307A18DFA4A1971 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 9F1CA6A976D5CA84636BEDD2FE090046 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = D44B0AC9F9D014420D85D62EA5F90E38 /* RCTRedBox.m */; };
- 9FE7847AF8B9F1B7DAC6D73B62F384DB /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5D0FF85FA9A209C329ADF15CC02783 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A0BE1044161F8367E44AA1802EB1D533 /* RNDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 946BCD50F0D1B8A729D3647DCE935ABF /* RNDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A0C7F2259DCA5B2D3547F5DB9628F929 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0856D314548B4285EA445A9DA0D8272 /* RCTView.m */; };
- A32A3D3F2D0BB0E1DF4498A1017D0205 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 154273B0A7DAC77B81781385326B7A1E /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A33F9A0CB2F87D9F0C5C3D305A9BB5F7 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FA93A662335AECBB389847FC6A8F7B89 /* RCTRootContentView.m */; };
- A378E5CDCBF527F14E7C08A025998E30 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8778D7D839A52FB1653581000A2333B7 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A39A1AE02838924DFFE1ECBDE314148D /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 522A61CF50AF4AD0376DFD347C691501 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A589E5C9E958B0BEF9D44D57F6A48BA3 /* RCTWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EEA2F8F0BFA876510418EB2594A6E70 /* RCTWebView.m */; };
- A72FD7117FABF6CD9B1C181A19F16211 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF15F189CAD5455DE3B14DE56E82D80 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A7DB02AF3537A151F23D6B5A1C0D6282 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AEE92E38D8B12F8D51076F191E70DC /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A8248FE57552358311AA24E69BD55739 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C406F810FE6A1B2F08772182D9FFAFF /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A8D28423CEFEAD82547F688DAE772955 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE7D7B9130FED5DF1E76D7C0D94D03C /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A8DB6C9236325B0924DD9AF9C35C78C4 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF49B39C4D4FF892FB2983CDCE4D371E /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- AC50106BF06EE38FCF90E48BE1FD2654 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1ACB149C0A6E763887A14333EA294DB0 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- ADAEC5C1E2E323B0D74807EEC881DDE4 /* RCTNavItemManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 468CDCD352494D15495BE40FFA308411 /* RCTNavItemManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- AE1E5B952AB817EE627595B52E1990C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D78398A1716BE000816F63ED37425A0A /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; };
- AEF19123BD6993594A0DDEF51310B927 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A379DDD8127285B5B277F9BD7F85586 /* RCTLayoutAnimationGroup.m */; };
- B00AAC59D759784067A07CCC0F479A3C /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD7D248D03685CCE68F46BF9DD6695CB /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- B0921228DE81FF353602957D24457CBC /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = AD10E242C566203F32DF943CE656676E /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B0B5CFC6D282402F589BBB8596F6082C /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF900A399F59A5089778E8EA32D362D /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B1560AD739C104EAB080A3A81EDA044B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 41623071F9B93F5D94A0FCE3A97875CC /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B2284AA54274C8F5EA08A7C70E06FE2D /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D6DE883FB5BA4A8777F1CD6F169D97E2 /* RCTViewManager.m */; };
- B3012B1AB9BE5340F663130B4B22BB16 /* DatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F142ED076F5F4448CC71E52A5D67A55 /* DatePicker.m */; };
- B3333F5785345705BE3ADF7B5B4D2A2C /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A92C13A20ED8D20875DB324B965CCAD9 /* RCTSliderManager.m */; };
- B34141F0B71F3B45CB84CF4363FC2C49 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AF195DC13AD41129EF596682FFCC1F1 /* RCTUIUtils.m */; };
- B42A51F9911301D73CBEB0C913B3BE04 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D59BEA48FB3742E6A6D75AA4B1B8447D /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B4A25AE69B10BEFAEE8D2E1C4BACE878 /* RCTNavItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA38A59700C5C67A001637A78C537B8 /* RCTNavItem.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B4E7B1CC6D4B2A6E60D5709C37FC83B6 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA2E9982581D2C29DDF940EF414F721 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B4F187539D85AC204F05970528117BB5 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2114EE788A4A8B9DACBB1173C01058C0 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B5BAA719F95F692C0B4DC477D8907EAC /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2172A7B5043A069E54CA0890981724C3 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B5C5092706298FC96E69DF1778185F0D /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = CDAFD9068156D87F4FAF95B6220BF66E /* RCTEventEmitter.m */; };
- B5E9A495312C013970C8C02633738D67 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D771B952861FB232314A8AA9A488647 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B65EAF282893651CC697E27D599F14DA /* RCTNavigatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F3D8180120E35C159A2042D1BF65259B /* RCTNavigatorManager.m */; };
- B6EFF3DD2A79AC9334368341EFAE8B5D /* RCTWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B28FE8F9C58E8FD31539B492DB8E33 /* RCTWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B9E8FBEEBB75098DF6768430C6EA9757 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8D9577EFBD5FDD3EEA43C5C7ADAB02 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BB1F0594B39D152638ADB21E33EDF103 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0F662F461B0D09C1F5196B5BE3AA6C /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BDE0EF1D000407F0BF7F5AB0B119813E /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = B73DC26CF342CA2287B0499DF03AE3B9 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BE9430155C271B6A8F0C4E79051B9E66 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = F393784EB890BA7158AE7AFD861CCC32 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BFE573822549370E7D03D0BB52CD8C13 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 63B3FA433A02D89F1268484052B7FACB /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BFFB521103CBF0DA7A163E8ED050887C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D5877A8FA2AACEB74C33577FBEB4778 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C0E1B4257E1B5BF5D7DCFC1C85988E95 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B39AA081DEEF101A50A7512A942E648 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C20F35CCBB4AF149406902C8E68D8FEE /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44CBC449F274E25B8E5CEB9EB441AC9E /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C24F8F48A70C7F55B676AEAFBD86FF26 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = C5CAE93FA8F5C90A95859AC890362678 /* RCTSlider.m */; };
- C2C434028693A6372B9D819737836CD9 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = B553A155528A7A1F87A92A0491E6FE9B /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C3E0228084A62C60F65315D2BE8DB794 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = CAED4DBE0554DCC54184B7E5569201ED /* RCTAsyncLocalStorage.m */; };
- C7CCFB97B1289F99E0AEE0DE68FDF123 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9AB0E6BB4CD8A2828672C1DE62A822 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C7D4CFCD6F61A6629789661D6659381A /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B33C186ED4470F55EE3D968C5399BF50 /* RCTSurfaceRootShadowView.m */; };
- C85D3BE6A91A078D0FC207697E47E4E4 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C517C597EEF1DE03643968C85CECB3D /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C8A020DD1A1A85EBE72F085A9FA5186E /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 6386B187A8D6A6C1D0E37E734BCEF722 /* RCTProfileTrampoline-arm64.S */; };
- C8E11684BC7ADC4AAFB0AB75EAEA2776 /* RCTJSCSamplingProfiler.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B2DC0AF4EBF8A79E1B47DF47124514 /* RCTJSCSamplingProfiler.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CAEB287933180150C0D0FDF171D429E8 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B868FD323C3A67189255FA1F212FAB1D /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CB3EC6A668BA7B10848764F2B2AA099A /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = EA94408B1B083A02E1A1CA3397C79DF5 /* RCTProfileTrampoline-x86_64.S */; };
- CC6DE2D9451720A7A12F2D9D2E9B3A3D /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC7C2F8BAA36C144C1D3148B6BFABA3B /* RCTSurfaceSizeMeasureMode.mm */; };
- CD03EE71F15E47F0146B8BF9857BC93F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E283E4E9DED7A246EB45BAFABE7735 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CE06B1B8874A1298375AEBE6A73F1F9E /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B91C1A9B9F72B6B66741453230591633 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CEE5E2020FD1F00C27F87A1D958FB0B1 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836CCDBFDFBD87F579D20156B66BBB2C /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CF7F9B931D1CE028C2B504BCBEEF0F70 /* RCTJSCErrorHandling.mm in Sources */ = {isa = PBXBuildFile; fileRef = 924314C06F7FDC4E92A171038415157D /* RCTJSCErrorHandling.mm */; };
- CFD5C0415926FE036899AD7A999681EB /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D9BEA95AAB478860455E40BEED81A2 /* RCTAccessibilityManager.m */; };
- D0148C526073C7819F54193AA36A987B /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A811559587DFED697EBB569E3C229C11 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D0FF1205526BFF24CED7796519D8D9AD /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 75715ED9183E16C2B81F506584A84713 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D12375DEF2B9321A8F57C19B3AF7B0A0 /* YGFloatOptional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0610800DB6BA6C3587932547D9F70CB2 /* YGFloatOptional.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- D26606C632EB344F17A04DA88E26320C /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8F5730DB3CC7D94274F840BE1ECEAF9 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- D4A183F9E560C543A34A3AD0A8EC5B46 /* RCTWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1945AE4F39631CA437859B7533C57954 /* RCTWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D63AB33D62A9B45E8A95F71FF33B2DD7 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = DE31B11564640DF4C7C72BD152341A7E /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D9418BD07E1DBB0159C22E14E621D1ED /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79029C751AACBE475EA74BA4B3AB85ED /* RCTSegmentedControlManager.m */; };
- D9DD882FCB42DE50782BE233A0AE8095 /* RCTNavigatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EA44BE0A80FA20887528B16186DF16E1 /* RCTNavigatorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DA734AD36103755231F77C6E4213876B /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5237C5F4DFC5BB7BC571048DA9E5B74B /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DA876D0B22BBA8551D219192777E62BC /* RCTTabBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE9D3298F167C147BA4977B17379E154 /* RCTTabBarManager.m */; };
- DD23BB281EFC10642FF9EFE8440BCB62 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4112A0634AA342BEAE89B3FCF91E3FA3 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DD6A18983AA8894476D52A0F0F86264B /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 953A467FCA7AE956AB1D9E162477C07B /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DDE0CD681DF94F33BB19B9033743E81E /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A0FD25767FA2A52836158FEA387F156F /* RCTScrollContentViewManager.m */; };
- DED70E5B288B7F731C2C85E70041FB2C /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 7615740C775B76992F73EA4E75904D1E /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DEDB57FE80E4C9A93493A4597FEF5F2A /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F66EB4B0A4BE732E9023B8418CF0399 /* RCTStatusBarManager.m */; };
- DEE43D9F8F3535AE2A2238747CBE6873 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 17CE693B9C591B984F84E307AE7FA314 /* RCTTiming.m */; };
- DF7CE3A139A36A2EFE7B69CEA1B3C2C8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B53A15A241FD8AAFB51191B67D365185 /* Foundation.framework */; };
- E2568203F07FD1439C2B695FDBB71B86 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = CC4981818F830BF537AFB4EDB1CD6E44 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E2D7A046CB44D2A23918D0D68C7C6A56 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = D98AD2A4B0A1914544D634E32F9E21CE /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E47CCDD6E40836AFADCA7E0408E01AFD /* RCTTabBarItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFB8713C31A304B845789D16F74981E /* RCTTabBarItem.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E72AAD4EFE3911736E221DC3578E2C8B /* RCTTabBarItemManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB5A716F5C059823A38CC53481FA14F /* RCTTabBarItemManager.m */; };
- E7F6AA1700B8AD7A43477B5ABE8C58F5 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1BFC4E3E5BECB9732C42C54DDFCD76A /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- E8AE76234E74A7216EFFE28A485677D8 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D2C6B8414DCF0E5C166D12D6E105C0 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E9754B46546D547B122BEFCB1012CE80 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A945337F1EA5F6D86520ADA6849B55 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; };
- EB3D953FD6B2D3D303FCD0D0297BB801 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA76CC8071D0A87F45FFA2B1AAB4DBE7 /* RCTModalManager.m */; };
- EC59339EFFEF85B1DBC2104DB11D44C1 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2CCF6E12862ECF4A75CD1B27D86B01 /* RCTJSStackFrame.m */; };
- ED17358DC27909042FE61D974E9DFE1A /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5421C3592D0736C3D886B0FFA64C082E /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; };
- ED6FD9062724AC98D41070D9C6C23A41 /* RCTNavItemManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EC9C3C43982F971FFA08538631C936B6 /* RCTNavItemManager.m */; };
- EEA80E0AC9AD5F383D07807F195D2428 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DE43DF3DA5BA2D55AEEF1F15B87429F7 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- EEAD2AFFF4FC7137A83E291B95AD9290 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8C50E59C1785F47E42B5E556D5DE89 /* RCTLayout.m */; };
- EF6695C13325C1D005DD6821B7F4DB36 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8169A8B4E7616200F2D2B0DC1701178 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- EF95ADFAD19A747EC68B2C227352B53F /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 53ACA698F550FA04D2EDDC6DC861EB4C /* RCTI18nUtil.m */; };
- EFDB93CB6FF775E48B1CF5C26400E54A /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A8D987F06C90B2A2FE9450E090285EA /* RCTSurfaceView.mm */; };
- F0EF0CBFC6D605C4FDE48C36BBDF0F17 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A62D9495A232DFE958D9611EE07ED35 /* RCTBridge.m */; };
- F1392F6C348B8A400C760ED769342916 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B53A15A241FD8AAFB51191B67D365185 /* Foundation.framework */; };
- F2270AA68F0D9724877E519D564A322E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6490C4E0E439ADF142A3770BB02C9095 /* RCTSafeAreaShadowView.m */; };
- F2374CD72ACDE143AFE44EA621A83C4E /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F353C796B7D9C0DD08733E8BFB5913 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F402E9A3A680E9FF6200190076FBAF20 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E9656DD33AA49596C8A333A06D49195 /* RCTSourceCode.m */; };
- F582A2347541290537A70989B1447668 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9B96191C7372CA439FFF243731B55A9 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- F5AA6A5C41C0ECC3E32EB887D5EC8141 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC1DED6C207FB38F45D1FB76037D928B /* RCTLog.mm */; };
- F7143E3841ECD11A9245F0B7C2C19E51 /* Pods-ExampleCocoapodsTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E710B9F9BEFA4D8560ADF5879B9021C8 /* Pods-ExampleCocoapodsTests-dummy.m */; };
- F833EC1E4940B093E3D5BB0C4F7154D6 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1424E52B73568C64428CD1E9EE4FEB44 /* RCTPerformanceLogger.m */; };
- F83EFE2E7A494A66130D350402347683 /* RCTTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E86F45C1914438B11453BDBE757340 /* RCTTabBar.m */; };
- F8470488AB3CEC5DCA61FF3E0B53A96F /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CDC0764A0131BBF1E24CAB10A6D7479 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F96A020499DA892E7ACD34A52F021F6A /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E4ACAE8C6BF56ACBB8C1547DF11C87 /* RCTSafeAreaViewManager.m */; };
- F96DB5947AA7596F770530253D139A2B /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0905F6C79308C3C75EC1E730E005FB2 /* RCTDevSettings.mm */; };
- F9BF41558F40AED7DE03AD062E1AD47D /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20F06CA1F30307C52B9C03F1B3E54272 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
- FB2C63E021A3C2451B035D7CC5BF727D /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 991E59C6FED296EC04FCEA0C70F7DD92 /* RCTClipboard.m */; };
- FB40630C104139805A72E893F73D8999 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC3C2BD1F1A8B0116590B69F872AD1C3 /* RCTSwitchManager.m */; };
- FBDF47AD48B21D255E52582DC436C64B /* RCTWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1101DEE5AB3C0C4459EE5C5FC02835 /* RCTWebView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- FC29FFF0A206F99B29CBC9285E19E498 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = CA630E49A11B99C051A458B0F4E2BAFB /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; };
- FD886CBC9C8587BE3C7F06950C2D85CC /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF2E85B01A1CFE8022819CDDE41DDB4 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; };
- FE05750BC93B0D4191631D7249C01FDF /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B71178160901C7ACA06E0133E90399 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
- 6623CF02F92FFE6DB731B498401A2CA0 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F0D976419FACE05B7210298437421161;
- remoteInfo = React;
- };
- 867E02D808832D19603C66CEA6483A2C /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = D4898577931290460A7834CEEE3ACF68;
- remoteInfo = yoga;
- };
- C7AB89B47235921E734C2D540827BF1F /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = F0D976419FACE05B7210298437421161;
- remoteInfo = React;
- };
- DBC561BBFA63C82A5C8CA6FA238B2461 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = DD352F7FA1F602FB39453C35E3ED55B8;
- remoteInfo = "react-native-date-picker";
- };
- F00FDA4E996754B354454EB78A0747E8 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = D4898577931290460A7834CEEE3ACF68;
- remoteInfo = yoga;
- };
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXFileReference section */
- 001D32B76CC676D28073E45CE6453EA0 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; };
- 00EA3D3D89FFDD001C16391B86DA5BE3 /* RCTNavigator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavigator.m; sourceTree = ""; };
- 0610800DB6BA6C3587932547D9F70CB2 /* YGFloatOptional.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGFloatOptional.cpp; path = yoga/YGFloatOptional.cpp; sourceTree = ""; };
- 095349663DF5833A65BD655035915F3D /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; };
- 0B1D24E5E14C532A7BA79D220FD72836 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; };
- 0D771B952861FB232314A8AA9A488647 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; };
- 0D88E312B884043340A9D55E70AA57AB /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; };
- 0DBB3E721BFDC4B6AC1C8907A05C549E /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; };
- 0DC5656772736B527EE5CCAE5BBF2CBF /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; };
- 0FA38A59700C5C67A001637A78C537B8 /* RCTNavItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItem.h; sourceTree = ""; };
- 1019F62D1DD71169B6CA323AC552955D /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; };
- 10922D47D77255014F3C36E47E83ABB1 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 1424E52B73568C64428CD1E9EE4FEB44 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; };
- 14B28FE8F9C58E8FD31539B492DB8E33 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; };
- 14D8317C3081541A8F2625B2C3C765DD /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; };
- 1512BB122BD411B1511616AE01112207 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; };
- 154273B0A7DAC77B81781385326B7A1E /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; };
- 16525D0575CB70A72F5A18F6ADB740BD /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; };
- 16EFC544082772529595724E92860BB2 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; };
- 17CE693B9C591B984F84E307AE7FA314 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; };
- 1945AE4F39631CA437859B7533C57954 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; };
- 1981D4436F6873413EB17661941200B1 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; };
- 1ACB149C0A6E763887A14333EA294DB0 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; };
- 1AF195DC13AD41129EF596682FFCC1F1 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; };
- 1B722D6720099AE19EDF470A2C5A3E09 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; };
- 1C1101DEE5AB3C0C4459EE5C5FC02835 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; };
- 1DA88283CE069CB8A0B999087F6F6665 /* Pods-ExampleCocoapodsTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ExampleCocoapodsTests-acknowledgements.markdown"; sourceTree = ""; };
- 1EC777FBD545DE6B96E686AE2BFD209D /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; };
- 1F7C3EE5ADFC30120427DA34724527C7 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; };
- 207EF0F1F1A6BD384DA81A2E9E9CB1A4 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; };
- 20F06CA1F30307C52B9C03F1B3E54272 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; };
- 2114EE788A4A8B9DACBB1173C01058C0 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; };
- 2172A7B5043A069E54CA0890981724C3 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; };
- 224A6866F81C45FFC64ACCE0C07D905B /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; };
- 233C85718999C066CB1281B537C10B09 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; };
- 2418BB931F669D5307CF05A08454FCAD /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; };
- 24866CF4F30FC925EA4D16610D77B26F /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; };
- 2584C100B59BC67E3C9AA692F918A089 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; };
- 25F957FCA2CBDF660E05098543366454 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; };
- 265AE13D30CD2B546DEC22D58B220643 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; };
- 2661BFC1495DB0097400399605FE7973 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; };
- 2805CEF9C9B5788CB3ACAD311DDF4555 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; };
- 2CF15F189CAD5455DE3B14DE56E82D80 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; };
- 2D3A27F8539B9B7DC6D58627410EB356 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; };
- 2D8C50E59C1785F47E42B5E556D5DE89 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; };
- 2E21328F622EDB13677DD7DFAA121018 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; };
- 2E75CA878892882E516B8D8D98C33A9E /* react-native-date-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-date-picker.xcconfig"; sourceTree = ""; };
- 2EA5FD181AAB6F8FB2C0ABC7EC2A747D /* Pods-ExampleCocoapodsTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ExampleCocoapodsTests-resources.sh"; sourceTree = ""; };
- 2F526450990C10DFA742B3B71836BC31 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; };
- 30842F11D11167C5BD73F5D82582C740 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; };
- 326A150FC1548EAB96685899CBB3FBF6 /* react-native-date-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = "react-native-date-picker.podspec"; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
- 3429FDD71FA744536A21709D272208F5 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; };
- 371257F56A4F46844B7B5CB9FF8F4FCA /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; };
- 394C6AB2D4F8336F22AF0C1EE0A0B3D2 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; };
- 39CBE6E621B1384DE87C07D1E69E1830 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; };
- 3CDC0764A0131BBF1E24CAB10A6D7479 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; };
- 3DCF8AC1CA53229D7CDED61215A189D6 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; };
- 3E51A90FCFE6F0696E4B9DCD945DE33A /* libreact-native-date-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-date-picker.a"; path = "libreact-native-date-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 3F1979400FEBA4C8CBC782EDB332E2BD /* Pods-ExampleCocoapods-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ExampleCocoapods-frameworks.sh"; sourceTree = ""; };
- 3F677E4027F8EEB768E94912EDDB4158 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; };
- 3F80569CD79C755CB4CF39F911E5759B /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; };
- 3FAD330ED03DED396C4EBE3059971AD9 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; };
- 3FFB8713C31A304B845789D16F74981E /* RCTTabBarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItem.h; sourceTree = ""; };
- 40C2449AA757176D1A2A61A3E4D5ACA4 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; };
- 4112A0634AA342BEAE89B3FCF91E3FA3 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; };
- 41623071F9B93F5D94A0FCE3A97875CC /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; };
- 41D660E9C3B36421F1E379238A34E021 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; };
- 44CBC449F274E25B8E5CEB9EB441AC9E /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; };
- 468CDCD352494D15495BE40FFA308411 /* RCTNavItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItemManager.h; sourceTree = ""; };
- 48F6077058179095D007458952BA3D85 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; };
- 4A62D9495A232DFE958D9611EE07ED35 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; };
- 4A8F1F51DB77D882C94B06A51A233672 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; };
- 4A9AB0E6BB4CD8A2828672C1DE62A822 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; };
- 4B7C15F9874E6E43C73BCF1D6586FF3E /* Pods-ExampleCocoapods-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ExampleCocoapods-dummy.m"; sourceTree = ""; };
- 4C6D8151AF54E84634445BD8795CE29F /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; };
- 4CCFA1E2A11D7CC11BA7D86E820113E7 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; };
- 4E16A9033B783F27B757FE15793F1604 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; };
- 4E9656DD33AA49596C8A333A06D49195 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; };
- 4EA68E7204DA8EADC4713D10DCC41ED6 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; };
- 4FB9298A062CBB7F0307A18DFA4A1971 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; };
- 50DEC7C700C06AF8A545C39DC9D5B457 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; };
- 50E4ACAE8C6BF56ACBB8C1547DF11C87 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; };
- 522A61CF50AF4AD0376DFD347C691501 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; };
- 5237C5F4DFC5BB7BC571048DA9E5B74B /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; };
- 529837C4E50980E9BAD968B964553F61 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; };
- 53ACA698F550FA04D2EDDC6DC861EB4C /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; };
- 5421C3592D0736C3D886B0FFA64C082E /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; };
- 55111F882A429489BB26E9C742C35E07 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; };
- 5665B688D95296187243DC5325A66560 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; };
- 5A379DDD8127285B5B277F9BD7F85586 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; };
- 5BF900A399F59A5089778E8EA32D362D /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; };
- 5C95D5FD72C4C96D0166B84E0AE170AC /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; };
- 5F66EB4B0A4BE732E9023B8418CF0399 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; };
- 606081CAD69D9114BE0886D03901B0CE /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; };
- 60EBAB4A49BE30EB601A4376AC599BD6 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; };
- 62A0EF0FF35D24066621A03F26A6AAA4 /* Pods-ExampleCocoapodsTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ExampleCocoapodsTests-frameworks.sh"; sourceTree = ""; };
- 6386B187A8D6A6C1D0E37E734BCEF722 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; };
- 63B3FA433A02D89F1268484052B7FACB /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; };
- 6490C4E0E439ADF142A3770BB02C9095 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; };
- 65E8A83362F5CE4F2FBE221613A28D03 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; };
- 673004059BC3DDA7137EDCC6F8B851AB /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; };
- 6870634CA04EC3CFE193A0F3016E14F3 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; };
- 6880D6704D62D17617A391FF4787F7EA /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 69622FC4694FDCC3768671B5A1B709BD /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; };
- 69C50A816A40C75A17358E188D2B8244 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; };
- 6A8D9577EFBD5FDD3EEA43C5C7ADAB02 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; };
- 6A8D987F06C90B2A2FE9450E090285EA /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; };
- 6C3D50228874A2BF009E9AF3E0B913DF /* RNDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDatePickerManager.m; path = ios/RNDatePicker/RNDatePickerManager.m; sourceTree = ""; };
- 6C45CD6D17945A67960875D8EC30E22B /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; };
- 6DBE3BF381A24E0976ABBCB24E90DBE1 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; };
- 6E7C8097B590990FA552699A82C10E0A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; };
- 6EC7A7C464FC20FFE108A7939DFA2366 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; };
- 6F142ED076F5F4448CC71E52A5D67A55 /* DatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DatePicker.m; path = ios/RNDatePicker/DatePicker.m; sourceTree = ""; };
- 7026E7015EA4A60A113766E201859482 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; };
- 71679E4097581B8642012C372A4C8B03 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; };
- 7175A2B8EBDBA698B0A839CAD430B717 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; };
- 7268DF79EEB0898580341259CA95C78F /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = React.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
- 7281562E776A53C7C824FE4EA0B342F4 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; };
- 7387A3852D4C419DADD23FCCF8B6FC29 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; };
- 75715ED9183E16C2B81F506584A84713 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; };
- 759B51FCC190B5C5D9FDBD54A7D6B0C2 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; };
- 7615740C775B76992F73EA4E75904D1E /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; };
- 774DAF38D07416A95D3A2FDCF74112DB /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; };
- 78348EE7EF6B4C0AF54CB4ED4A1C457F /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; };
- 78408BD2F442BC6A54EB9B4B9357DDBF /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; };
- 78F2AA31ABC7B12141F204F29EB84592 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; };
- 79029C751AACBE475EA74BA4B3AB85ED /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; };
- 7925E307BEFD4CCCC7C588A3252C5075 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; };
- 7AE9156308C66074B348BFD43A8A5209 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; };
- 7B39AA081DEEF101A50A7512A942E648 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; };
- 7CB94A0A834270561188D13276C97714 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; };
- 7D1B05B95870BAA28A9C5B9487B9D661 /* libPods-ExampleCocoapods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ExampleCocoapods.a"; path = "libPods-ExampleCocoapods.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 8144D31597F629DE02D736F775F25050 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; };
- 81642AA85896122FA55B739D01AE006A /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; };
- 8184A1CD846826B1EA39DC0252DF16A5 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; };
- 81BA8636A705E492B3E7727633762E05 /* Pods-ExampleCocoapods-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ExampleCocoapods-resources.sh"; sourceTree = ""; };
- 8271B73EADC956399FE69F70E4F036AC /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; };
- 836CCDBFDFBD87F579D20156B66BBB2C /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; };
- 84384B9BC088375908F1AAFB7EDA8192 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; };
- 84E86F45C1914438B11453BDBE757340 /* RCTTabBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBar.m; sourceTree = ""; };
- 8778D7D839A52FB1653581000A2333B7 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; };
- 89254FFC2A2B6ADD513D5D92D2C5465C /* RCTTabBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBar.h; sourceTree = ""; };
- 896CACD6531B91258677CE6D9E496288 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "