Showing
18 changed files
with
1188 additions
and
666 deletions
| @@ -20,7 +20,7 @@ import com.android.build.OutputFile | @@ -20,7 +20,7 @@ import com.android.build.OutputFile | ||
| 20 | * // default. Can be overridden with ENTRY_FILE environment variable. | 20 | * // default. Can be overridden with ENTRY_FILE environment variable. |
| 21 | * entryFile: "index.android.js", | 21 | * entryFile: "index.android.js", |
| 22 | * | 22 | * |
| 23 | - * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format | 23 | + * // https://reactnative.dev/docs/performance#enable-the-ram-format |
| 24 | * bundleCommand: "ram-bundle", | 24 | * bundleCommand: "ram-bundle", |
| 25 | * | 25 | * |
| 26 | * // whether to bundle JS and assets in debug mode | 26 | * // whether to bundle JS and assets in debug mode |
| @@ -161,20 +161,13 @@ android { | @@ -161,20 +161,13 @@ android { | ||
| 161 | } | 161 | } |
| 162 | release { | 162 | release { |
| 163 | // Caution! In production, you need to generate your own keystore file. | 163 | // Caution! In production, you need to generate your own keystore file. |
| 164 | - // see https://facebook.github.io/react-native/docs/signed-apk-android. | 164 | + // see https://reactnative.dev/docs/signed-apk-android. |
| 165 | signingConfig signingConfigs.debug | 165 | signingConfig signingConfigs.debug |
| 166 | minifyEnabled enableProguardInReleaseBuilds | 166 | minifyEnabled enableProguardInReleaseBuilds |
| 167 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" | 167 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" |
| 168 | } | 168 | } |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | - packagingOptions { | ||
| 172 | - pickFirst "lib/armeabi-v7a/libc++_shared.so" | ||
| 173 | - pickFirst "lib/arm64-v8a/libc++_shared.so" | ||
| 174 | - pickFirst "lib/x86/libc++_shared.so" | ||
| 175 | - pickFirst "lib/x86_64/libc++_shared.so" | ||
| 176 | - } | ||
| 177 | - | ||
| 178 | // applicationVariants are e.g. debug, release | 171 | // applicationVariants are e.g. debug, release |
| 179 | applicationVariants.all { variant -> | 172 | applicationVariants.all { variant -> |
| 180 | variant.outputs.each { output -> | 173 | variant.outputs.each { output -> |
| @@ -211,6 +204,7 @@ dependencies { | @@ -211,6 +204,7 @@ dependencies { | ||
| 211 | 204 | ||
| 212 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { | 205 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { |
| 213 | exclude group:'com.facebook.flipper' | 206 | exclude group:'com.facebook.flipper' |
| 207 | + exclude group:'com.squareup.okhttp3', module:'okhttp' | ||
| 214 | } | 208 | } |
| 215 | 209 | ||
| 216 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { | 210 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { |
| @@ -12,8 +12,7 @@ buildscript { | @@ -12,8 +12,7 @@ buildscript { | ||
| 12 | jcenter() | 12 | jcenter() |
| 13 | } | 13 | } |
| 14 | dependencies { | 14 | dependencies { |
| 15 | - classpath("com.android.tools.build:gradle:3.5.2") | 15 | + classpath("com.android.tools.build:gradle:3.5.3") |
| 16 | - | ||
| 17 | // NOTE: Do not place your application dependencies here; they belong | 16 | // NOTE: Do not place your application dependencies here; they belong |
| 18 | // in the individual module build.gradle files | 17 | // in the individual module build.gradle files |
| 19 | } | 18 | } |
| @@ -25,4 +25,4 @@ android.useAndroidX=true | @@ -25,4 +25,4 @@ android.useAndroidX=true | ||
| 25 | android.enableJetifier=true | 25 | android.enableJetifier=true |
| 26 | 26 | ||
| 27 | # Version of flipper SDK to use with React Native | 27 | # Version of flipper SDK to use with React Native |
| 28 | -FLIPPER_VERSION=0.33.1 | 28 | +FLIPPER_VERSION=0.37.0 |
No preview for this file type
| 1 | distributionBase=GRADLE_USER_HOME | 1 | distributionBase=GRADLE_USER_HOME |
| 2 | distributionPath=wrapper/dists | 2 | distributionPath=wrapper/dists |
| 3 | -distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip | 3 | +distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-all.zip |
| 4 | zipStoreBase=GRADLE_USER_HOME | 4 | zipStoreBase=GRADLE_USER_HOME |
| 5 | zipStorePath=wrapper/dists | 5 | zipStorePath=wrapper/dists |
| @@ -154,19 +154,19 @@ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then | @@ -154,19 +154,19 @@ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then | ||
| 154 | else | 154 | else |
| 155 | eval `echo args$i`="\"$arg\"" | 155 | eval `echo args$i`="\"$arg\"" |
| 156 | fi | 156 | fi |
| 157 | - i=$((i+1)) | 157 | + i=`expr $i + 1` |
| 158 | done | 158 | done |
| 159 | case $i in | 159 | case $i in |
| 160 | - (0) set -- ;; | 160 | + 0) set -- ;; |
| 161 | - (1) set -- "$args0" ;; | 161 | + 1) set -- "$args0" ;; |
| 162 | - (2) set -- "$args0" "$args1" ;; | 162 | + 2) set -- "$args0" "$args1" ;; |
| 163 | - (3) set -- "$args0" "$args1" "$args2" ;; | 163 | + 3) set -- "$args0" "$args1" "$args2" ;; |
| 164 | - (4) set -- "$args0" "$args1" "$args2" "$args3" ;; | 164 | + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; |
| 165 | - (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; | 165 | + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; |
| 166 | - (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; | 166 | + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; |
| 167 | - (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; | 167 | + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; |
| 168 | - (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; | 168 | + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; |
| 169 | - (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; | 169 | + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; |
| 170 | esac | 170 | esac |
| 171 | fi | 171 | fi |
| 172 | 172 | ||
| @@ -175,14 +175,9 @@ save () { | @@ -175,14 +175,9 @@ save () { | ||
| 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done | 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done |
| 176 | echo " " | 176 | echo " " |
| 177 | } | 177 | } |
| 178 | -APP_ARGS=$(save "$@") | 178 | +APP_ARGS=`save "$@"` |
| 179 | 179 | ||
| 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules |
| 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" | 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" |
| 182 | 182 | ||
| 183 | -# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong | ||
| 184 | -if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then | ||
| 185 | - cd "$(dirname "$0")" | ||
| 186 | -fi | ||
| 187 | - | ||
| 188 | exec "$JAVACMD" "$@" | 183 | exec "$JAVACMD" "$@" |
| @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. | @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. | ||
| 29 | set APP_BASE_NAME=%~n0 | 29 | set APP_BASE_NAME=%~n0 |
| 30 | set APP_HOME=%DIRNAME% | 30 | set APP_HOME=%DIRNAME% |
| 31 | 31 | ||
| 32 | +@rem Resolve any "." and ".." in APP_HOME to make it shorter. | ||
| 33 | +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi | ||
| 34 | + | ||
| 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. |
| 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" | 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" |
| 34 | 37 |
| @@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
| 7 | <key>CFBundleExecutable</key> | 7 | <key>CFBundleExecutable</key> |
| 8 | <string>$(EXECUTABLE_NAME)</string> | 8 | <string>$(EXECUTABLE_NAME)</string> |
| 9 | <key>CFBundleIdentifier</key> | 9 | <key>CFBundleIdentifier</key> |
| 10 | - <string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string> | 10 | + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> |
| 11 | <key>CFBundleInfoDictionaryVersion</key> | 11 | <key>CFBundleInfoDictionaryVersion</key> |
| 12 | <string>6.0</string> | 12 | <string>6.0</string> |
| 13 | <key>CFBundleName</key> | 13 | <key>CFBundleName</key> |
| @@ -9,7 +9,6 @@ | @@ -9,7 +9,6 @@ | ||
| 9 | /* Begin PBXBuildFile section */ | 9 | /* Begin PBXBuildFile section */ |
| 10 | 00E356F31AD99517003FC87E /* NGPlayTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NGPlayTests.m */; }; | 10 | 00E356F31AD99517003FC87E /* NGPlayTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NGPlayTests.m */; }; |
| 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; | 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; |
| 12 | - 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; | ||
| 13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; | 12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; |
| 14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; | 13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; |
| 15 | 288FC1B5F87808D918D46453 /* libPods-NGPlay-NGPlayTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D6D648C16083965167A7A246 /* libPods-NGPlay-NGPlayTests.a */; }; | 14 | 288FC1B5F87808D918D46453 /* libPods-NGPlay-NGPlayTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D6D648C16083965167A7A246 /* libPods-NGPlay-NGPlayTests.a */; }; |
| @@ -21,6 +20,8 @@ | @@ -21,6 +20,8 @@ | ||
| 21 | B42641190DD22299CEC01B2A /* libPods-NGPlay-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FE3472145785462D072698D /* libPods-NGPlay-tvOSTests.a */; }; | 20 | B42641190DD22299CEC01B2A /* libPods-NGPlay-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FE3472145785462D072698D /* libPods-NGPlay-tvOSTests.a */; }; |
| 22 | CA3002C2EBE7552EB8773862 /* libPods-NGPlay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3331BC6083E76C70FC7C040E /* libPods-NGPlay.a */; }; | 21 | CA3002C2EBE7552EB8773862 /* libPods-NGPlay.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3331BC6083E76C70FC7C040E /* libPods-NGPlay.a */; }; |
| 23 | CE18668224486D6800FBDC7A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CE18668424486D6800FBDC7A /* InfoPlist.strings */; }; | 22 | CE18668224486D6800FBDC7A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CE18668424486D6800FBDC7A /* InfoPlist.strings */; }; |
| 23 | + CE29634C24DD48D600CA92E8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CE29634F24DD48D600CA92E8 /* LaunchScreen.storyboard */; }; | ||
| 24 | + CE29634D24DD48D600CA92E8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CE29634F24DD48D600CA92E8 /* LaunchScreen.storyboard */; }; | ||
| 24 | /* End PBXBuildFile section */ | 25 | /* End PBXBuildFile section */ |
| 25 | 26 | ||
| 26 | /* Begin PBXContainerItemProxy section */ | 27 | /* Begin PBXContainerItemProxy section */ |
| @@ -48,7 +49,6 @@ | @@ -48,7 +49,6 @@ | ||
| 48 | 13B07F961A680F5B00A75B9A /* NGPlay.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NGPlay.app; sourceTree = BUILT_PRODUCTS_DIR; }; | 49 | 13B07F961A680F5B00A75B9A /* NGPlay.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NGPlay.app; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 49 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = NGPlay/AppDelegate.h; sourceTree = "<group>"; }; | 50 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = NGPlay/AppDelegate.h; sourceTree = "<group>"; }; |
| 50 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = NGPlay/AppDelegate.m; sourceTree = "<group>"; }; | 51 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = NGPlay/AppDelegate.m; sourceTree = "<group>"; }; |
| 51 | - 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; }; | ||
| 52 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NGPlay/Images.xcassets; sourceTree = "<group>"; }; | 52 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NGPlay/Images.xcassets; sourceTree = "<group>"; }; |
| 53 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NGPlay/Info.plist; sourceTree = "<group>"; }; | 53 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NGPlay/Info.plist; sourceTree = "<group>"; }; |
| 54 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = NGPlay/main.m; sourceTree = "<group>"; }; | 54 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = NGPlay/main.m; sourceTree = "<group>"; }; |
| @@ -63,9 +63,10 @@ | @@ -63,9 +63,10 @@ | ||
| 63 | B2B8A9D1FA03C19814654981 /* libPods-NGPlay-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NGPlay-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; | 63 | B2B8A9D1FA03C19814654981 /* libPods-NGPlay-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NGPlay-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 64 | C71DD678E7D90A14A575E160 /* Pods-NGPlay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay.debug.xcconfig"; path = "Target Support Files/Pods-NGPlay/Pods-NGPlay.debug.xcconfig"; sourceTree = "<group>"; }; | 64 | C71DD678E7D90A14A575E160 /* Pods-NGPlay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay.debug.xcconfig"; path = "Target Support Files/Pods-NGPlay/Pods-NGPlay.debug.xcconfig"; sourceTree = "<group>"; }; |
| 65 | CB37CBA7FB02085DAB6424CF /* Pods-NGPlay-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-NGPlay-tvOSTests/Pods-NGPlay-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; }; | 65 | CB37CBA7FB02085DAB6424CF /* Pods-NGPlay-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-NGPlay-tvOSTests/Pods-NGPlay-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; }; |
| 66 | - CE18667F24480E4200FBDC7A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; }; | ||
| 67 | CE18668324486D6800FBDC7A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | 66 | CE18668324486D6800FBDC7A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; |
| 68 | CE18668524486D6F00FBDC7A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; }; | 67 | CE18668524486D6F00FBDC7A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; }; |
| 68 | + CE29634E24DD48D600CA92E8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||
| 69 | + CE29635124DD48DD00CA92E8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; }; | ||
| 69 | CF55E7A4CE74442883154991 /* Pods-NGPlay-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-NGPlay-tvOSTests/Pods-NGPlay-tvOSTests.release.xcconfig"; sourceTree = "<group>"; }; | 70 | CF55E7A4CE74442883154991 /* Pods-NGPlay-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NGPlay-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-NGPlay-tvOSTests/Pods-NGPlay-tvOSTests.release.xcconfig"; sourceTree = "<group>"; }; |
| 70 | D6D648C16083965167A7A246 /* libPods-NGPlay-NGPlayTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NGPlay-NGPlayTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; | 71 | D6D648C16083965167A7A246 /* libPods-NGPlay-NGPlayTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NGPlay-NGPlayTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 71 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; | 72 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; |
| @@ -129,12 +130,12 @@ | @@ -129,12 +130,12 @@ | ||
| 129 | 13B07FAE1A68108700A75B9A /* NGPlay */ = { | 130 | 13B07FAE1A68108700A75B9A /* NGPlay */ = { |
| 130 | isa = PBXGroup; | 131 | isa = PBXGroup; |
| 131 | children = ( | 132 | children = ( |
| 133 | + CE29634F24DD48D600CA92E8 /* LaunchScreen.storyboard */, | ||
| 132 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, | 134 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, |
| 133 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, | 135 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, |
| 134 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, | 136 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, |
| 135 | 13B07FB51A68108700A75B9A /* Images.xcassets */, | 137 | 13B07FB51A68108700A75B9A /* Images.xcassets */, |
| 136 | 13B07FB61A68108700A75B9A /* Info.plist */, | 138 | 13B07FB61A68108700A75B9A /* Info.plist */, |
| 137 | - 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, | ||
| 138 | 13B07FB71A68108700A75B9A /* main.m */, | 139 | 13B07FB71A68108700A75B9A /* main.m */, |
| 139 | CE18668424486D6800FBDC7A /* InfoPlist.strings */, | 140 | CE18668424486D6800FBDC7A /* InfoPlist.strings */, |
| 140 | ); | 141 | ); |
| @@ -346,9 +347,9 @@ | @@ -346,9 +347,9 @@ | ||
| 346 | isa = PBXResourcesBuildPhase; | 347 | isa = PBXResourcesBuildPhase; |
| 347 | buildActionMask = 2147483647; | 348 | buildActionMask = 2147483647; |
| 348 | files = ( | 349 | files = ( |
| 350 | + CE29634C24DD48D600CA92E8 /* LaunchScreen.storyboard in Resources */, | ||
| 349 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, | 351 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, |
| 350 | CE18668224486D6800FBDC7A /* InfoPlist.strings in Resources */, | 352 | CE18668224486D6800FBDC7A /* InfoPlist.strings in Resources */, |
| 351 | - 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, | ||
| 352 | ); | 353 | ); |
| 353 | runOnlyForDeploymentPostprocessing = 0; | 354 | runOnlyForDeploymentPostprocessing = 0; |
| 354 | }; | 355 | }; |
| @@ -357,6 +358,7 @@ | @@ -357,6 +358,7 @@ | ||
| 357 | buildActionMask = 2147483647; | 358 | buildActionMask = 2147483647; |
| 358 | files = ( | 359 | files = ( |
| 359 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, | 360 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, |
| 361 | + CE29634D24DD48D600CA92E8 /* LaunchScreen.storyboard in Resources */, | ||
| 360 | ); | 362 | ); |
| 361 | runOnlyForDeploymentPostprocessing = 0; | 363 | runOnlyForDeploymentPostprocessing = 0; |
| 362 | }; | 364 | }; |
| @@ -382,7 +384,7 @@ | @@ -382,7 +384,7 @@ | ||
| 382 | ); | 384 | ); |
| 383 | runOnlyForDeploymentPostprocessing = 0; | 385 | runOnlyForDeploymentPostprocessing = 0; |
| 384 | shellPath = /bin/sh; | 386 | shellPath = /bin/sh; |
| 385 | - shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; | 387 | + shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; |
| 386 | }; | 388 | }; |
| 387 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { | 389 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { |
| 388 | isa = PBXShellScriptBuildPhase; | 390 | isa = PBXShellScriptBuildPhase; |
| @@ -445,6 +447,7 @@ | @@ -445,6 +447,7 @@ | ||
| 445 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", | 447 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", |
| 446 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", | 448 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", |
| 447 | "${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle", | 449 | "${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle", |
| 450 | + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", | ||
| 448 | ); | 451 | ); |
| 449 | name = "[CP] Copy Pods Resources"; | 452 | name = "[CP] Copy Pods Resources"; |
| 450 | outputPaths = ( | 453 | outputPaths = ( |
| @@ -466,6 +469,7 @@ | @@ -466,6 +469,7 @@ | ||
| 466 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", | 469 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", |
| 467 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", | 470 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", |
| 468 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle", | 471 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle", |
| 472 | + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", | ||
| 469 | ); | 473 | ); |
| 470 | runOnlyForDeploymentPostprocessing = 0; | 474 | runOnlyForDeploymentPostprocessing = 0; |
| 471 | shellPath = /bin/sh; | 475 | shellPath = /bin/sh; |
| @@ -563,6 +567,7 @@ | @@ -563,6 +567,7 @@ | ||
| 563 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", | 567 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf", |
| 564 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", | 568 | "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf", |
| 565 | "${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle", | 569 | "${PODS_ROOT}/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle", |
| 570 | + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", | ||
| 566 | ); | 571 | ); |
| 567 | name = "[CP] Copy Pods Resources"; | 572 | name = "[CP] Copy Pods Resources"; |
| 568 | outputPaths = ( | 573 | outputPaths = ( |
| @@ -584,6 +589,7 @@ | @@ -584,6 +589,7 @@ | ||
| 584 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", | 589 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf", |
| 585 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", | 590 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf", |
| 586 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle", | 591 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RSKImageCropperStrings.bundle", |
| 592 | + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", | ||
| 587 | ); | 593 | ); |
| 588 | runOnlyForDeploymentPostprocessing = 0; | 594 | runOnlyForDeploymentPostprocessing = 0; |
| 589 | shellPath = /bin/sh; | 595 | shellPath = /bin/sh; |
| @@ -681,23 +687,23 @@ | @@ -681,23 +687,23 @@ | ||
| 681 | /* End PBXTargetDependency section */ | 687 | /* End PBXTargetDependency section */ |
| 682 | 688 | ||
| 683 | /* Begin PBXVariantGroup section */ | 689 | /* Begin PBXVariantGroup section */ |
| 684 | - 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { | 690 | + CE18668424486D6800FBDC7A /* InfoPlist.strings */ = { |
| 685 | isa = PBXVariantGroup; | 691 | isa = PBXVariantGroup; |
| 686 | children = ( | 692 | children = ( |
| 687 | - 13B07FB21A68108700A75B9A /* Base */, | 693 | + CE18668324486D6800FBDC7A /* en */, |
| 688 | - CE18667F24480E4200FBDC7A /* zh-Hans */, | 694 | + CE18668524486D6F00FBDC7A /* zh-Hans */, |
| 689 | ); | 695 | ); |
| 690 | - name = LaunchScreen.xib; | 696 | + name = InfoPlist.strings; |
| 691 | - path = NGPlay; | ||
| 692 | sourceTree = "<group>"; | 697 | sourceTree = "<group>"; |
| 693 | }; | 698 | }; |
| 694 | - CE18668424486D6800FBDC7A /* InfoPlist.strings */ = { | 699 | + CE29634F24DD48D600CA92E8 /* LaunchScreen.storyboard */ = { |
| 695 | isa = PBXVariantGroup; | 700 | isa = PBXVariantGroup; |
| 696 | children = ( | 701 | children = ( |
| 697 | - CE18668324486D6800FBDC7A /* en */, | 702 | + CE29634E24DD48D600CA92E8 /* Base */, |
| 698 | - CE18668524486D6F00FBDC7A /* zh-Hans */, | 703 | + CE29635124DD48DD00CA92E8 /* zh-Hans */, |
| 699 | ); | 704 | ); |
| 700 | - name = InfoPlist.strings; | 705 | + name = LaunchScreen.storyboard; |
| 706 | + path = NGPlay; | ||
| 701 | sourceTree = "<group>"; | 707 | sourceTree = "<group>"; |
| 702 | }; | 708 | }; |
| 703 | /* End PBXVariantGroup section */ | 709 | /* End PBXVariantGroup section */ |
| @@ -713,7 +719,7 @@ | @@ -713,7 +719,7 @@ | ||
| 713 | "$(inherited)", | 719 | "$(inherited)", |
| 714 | ); | 720 | ); |
| 715 | INFOPLIST_FILE = NGPlayTests/Info.plist; | 721 | INFOPLIST_FILE = NGPlayTests/Info.plist; |
| 716 | - IPHONEOS_DEPLOYMENT_TARGET = 9.0; | 722 | + IPHONEOS_DEPLOYMENT_TARGET = 10.0; |
| 717 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | 723 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; |
| 718 | OTHER_LDFLAGS = ( | 724 | OTHER_LDFLAGS = ( |
| 719 | "-ObjC", | 725 | "-ObjC", |
| @@ -733,7 +739,7 @@ | @@ -733,7 +739,7 @@ | ||
| 733 | BUNDLE_LOADER = "$(TEST_HOST)"; | 739 | BUNDLE_LOADER = "$(TEST_HOST)"; |
| 734 | COPY_PHASE_STRIP = NO; | 740 | COPY_PHASE_STRIP = NO; |
| 735 | INFOPLIST_FILE = NGPlayTests/Info.plist; | 741 | INFOPLIST_FILE = NGPlayTests/Info.plist; |
| 736 | - IPHONEOS_DEPLOYMENT_TARGET = 9.0; | 742 | + IPHONEOS_DEPLOYMENT_TARGET = 10.0; |
| 737 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | 743 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; |
| 738 | OTHER_LDFLAGS = ( | 744 | OTHER_LDFLAGS = ( |
| 739 | "-ObjC", | 745 | "-ObjC", |
| @@ -820,7 +826,7 @@ | @@ -820,7 +826,7 @@ | ||
| 820 | PRODUCT_NAME = "$(TARGET_NAME)"; | 826 | PRODUCT_NAME = "$(TARGET_NAME)"; |
| 821 | SDKROOT = appletvos; | 827 | SDKROOT = appletvos; |
| 822 | TARGETED_DEVICE_FAMILY = 3; | 828 | TARGETED_DEVICE_FAMILY = 3; |
| 823 | - TVOS_DEPLOYMENT_TARGET = 9.2; | 829 | + TVOS_DEPLOYMENT_TARGET = 10.0; |
| 824 | }; | 830 | }; |
| 825 | name = Debug; | 831 | name = Debug; |
| 826 | }; | 832 | }; |
| @@ -848,7 +854,7 @@ | @@ -848,7 +854,7 @@ | ||
| 848 | PRODUCT_NAME = "$(TARGET_NAME)"; | 854 | PRODUCT_NAME = "$(TARGET_NAME)"; |
| 849 | SDKROOT = appletvos; | 855 | SDKROOT = appletvos; |
| 850 | TARGETED_DEVICE_FAMILY = 3; | 856 | TARGETED_DEVICE_FAMILY = 3; |
| 851 | - TVOS_DEPLOYMENT_TARGET = 9.2; | 857 | + TVOS_DEPLOYMENT_TARGET = 10.0; |
| 852 | }; | 858 | }; |
| 853 | name = Release; | 859 | name = Release; |
| 854 | }; | 860 | }; |
| @@ -953,7 +959,7 @@ | @@ -953,7 +959,7 @@ | ||
| 953 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | 959 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
| 954 | GCC_WARN_UNUSED_FUNCTION = YES; | 960 | GCC_WARN_UNUSED_FUNCTION = YES; |
| 955 | GCC_WARN_UNUSED_VARIABLE = YES; | 961 | GCC_WARN_UNUSED_VARIABLE = YES; |
| 956 | - IPHONEOS_DEPLOYMENT_TARGET = 9.0; | 962 | + IPHONEOS_DEPLOYMENT_TARGET = 10.0; |
| 957 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | 963 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; |
| 958 | LIBRARY_SEARCH_PATHS = ( | 964 | LIBRARY_SEARCH_PATHS = ( |
| 959 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | 965 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", |
| @@ -1006,7 +1012,7 @@ | @@ -1006,7 +1012,7 @@ | ||
| 1006 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | 1012 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
| 1007 | GCC_WARN_UNUSED_FUNCTION = YES; | 1013 | GCC_WARN_UNUSED_FUNCTION = YES; |
| 1008 | GCC_WARN_UNUSED_VARIABLE = YES; | 1014 | GCC_WARN_UNUSED_VARIABLE = YES; |
| 1009 | - IPHONEOS_DEPLOYMENT_TARGET = 9.0; | 1015 | + IPHONEOS_DEPLOYMENT_TARGET = 10.0; |
| 1010 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | 1016 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; |
| 1011 | LIBRARY_SEARCH_PATHS = ( | 1017 | LIBRARY_SEARCH_PATHS = ( |
| 1012 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | 1018 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", |
| @@ -13,7 +13,7 @@ | @@ -13,7 +13,7 @@ | ||
| 13 | #import <React/RCTRootView.h> | 13 | #import <React/RCTRootView.h> |
| 14 | #import "RNQuickActionManager.h" | 14 | #import "RNQuickActionManager.h" |
| 15 | 15 | ||
| 16 | -#if DEBUG | 16 | +#if FB_SONARKIT_ENABLED |
| 17 | #import <FlipperKit/FlipperClient.h> | 17 | #import <FlipperKit/FlipperClient.h> |
| 18 | #import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h> | 18 | #import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h> |
| 19 | #import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h> | 19 | #import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h> |
| @@ -36,7 +36,7 @@ static void InitializeFlipper(UIApplication *application) { | @@ -36,7 +36,7 @@ static void InitializeFlipper(UIApplication *application) { | ||
| 36 | 36 | ||
| 37 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | 37 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions |
| 38 | { | 38 | { |
| 39 | -#if DEBUG | 39 | +#if FB_SONARKIT_ENABLED |
| 40 | InitializeFlipper(application); | 40 | InitializeFlipper(application); |
| 41 | #endif | 41 | #endif |
| 42 | 42 |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> | ||
| 3 | + <device id="retina4_7" orientation="portrait" appearance="light"/> | ||
| 4 | + <dependencies> | ||
| 5 | + <deployment identifier="iOS"/> | ||
| 6 | + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/> | ||
| 7 | + <capability name="Safe area layout guides" minToolsVersion="9.0"/> | ||
| 8 | + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> | ||
| 9 | + </dependencies> | ||
| 10 | + <scenes> | ||
| 11 | + <!--View Controller--> | ||
| 12 | + <scene sceneID="EHf-IW-A2E"> | ||
| 13 | + <objects> | ||
| 14 | + <viewController id="01J-lp-oVM" sceneMemberID="viewController"> | ||
| 15 | + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> | ||
| 16 | + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> | ||
| 17 | + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
| 18 | + <subviews> | ||
| 19 | + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="obG-Y5-kRd"> | ||
| 20 | + <rect key="frame" x="0.0" y="647" width="375" height="0.0"/> | ||
| 21 | + <fontDescription key="fontDescription" type="system" pointSize="17"/> | ||
| 22 | + <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 23 | + <nil key="highlightedColor"/> | ||
| 24 | + </label> | ||
| 25 | + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="NGPlay" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb"> | ||
| 26 | + <rect key="frame" x="0.0" y="202" width="375" height="43"/> | ||
| 27 | + <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/> | ||
| 28 | + <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 29 | + <nil key="highlightedColor"/> | ||
| 30 | + </label> | ||
| 31 | + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu"> | ||
| 32 | + <rect key="frame" x="0.0" y="626" width="375" height="21"/> | ||
| 33 | + <fontDescription key="fontDescription" type="system" pointSize="17"/> | ||
| 34 | + <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> | ||
| 35 | + <nil key="highlightedColor"/> | ||
| 36 | + </label> | ||
| 37 | + </subviews> | ||
| 38 | + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 39 | + <constraints> | ||
| 40 | + <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="obG-Y5-kRd" secondAttribute="centerX" id="5cz-MP-9tL"/> | ||
| 41 | + <constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/> | ||
| 42 | + <constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/> | ||
| 43 | + <constraint firstItem="obG-Y5-kRd" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="SfN-ll-jLj"/> | ||
| 44 | + <constraint firstAttribute="bottom" secondItem="obG-Y5-kRd" secondAttribute="bottom" constant="20" id="Y44-ml-fuU"/> | ||
| 45 | + <constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/> | ||
| 46 | + <constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/> | ||
| 47 | + <constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/> | ||
| 48 | + <constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/> | ||
| 49 | + </constraints> | ||
| 50 | + <viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/> | ||
| 51 | + </view> | ||
| 52 | + </viewController> | ||
| 53 | + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> | ||
| 54 | + </objects> | ||
| 55 | + <point key="canvasLocation" x="52.173913043478265" y="375"/> | ||
| 56 | + </scene> | ||
| 57 | + </scenes> | ||
| 58 | +</document> |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="16096" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES"> | ||
| 3 | - <device id="retina6_1" orientation="portrait" appearance="light"/> | ||
| 4 | - <dependencies> | ||
| 5 | - <deployment identifier="iOS"/> | ||
| 6 | - <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="16086"/> | ||
| 7 | - <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> | ||
| 8 | - </dependencies> | ||
| 9 | - <objects> | ||
| 10 | - <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/> | ||
| 11 | - <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> | ||
| 12 | - <view contentMode="scaleToFill" id="iN0-l3-epB"> | ||
| 13 | - <rect key="frame" x="0.0" y="0.0" width="480" height="480"/> | ||
| 14 | - <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
| 15 | - <subviews> | ||
| 16 | - <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye"> | ||
| 17 | - <rect key="frame" x="20" y="439" width="441" height="21"/> | ||
| 18 | - <fontDescription key="fontDescription" type="system" pointSize="17"/> | ||
| 19 | - <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> | ||
| 20 | - <nil key="highlightedColor"/> | ||
| 21 | - </label> | ||
| 22 | - <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="NGPlay" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX"> | ||
| 23 | - <rect key="frame" x="20" y="140" width="441" height="43"/> | ||
| 24 | - <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/> | ||
| 25 | - <color key="textColor" cocoaTouchSystemColor="darkTextColor"/> | ||
| 26 | - <nil key="highlightedColor"/> | ||
| 27 | - </label> | ||
| 28 | - </subviews> | ||
| 29 | - <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 30 | - <constraints> | ||
| 31 | - <constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/> | ||
| 32 | - <constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/> | ||
| 33 | - <constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/> | ||
| 34 | - <constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/> | ||
| 35 | - <constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/> | ||
| 36 | - <constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/> | ||
| 37 | - </constraints> | ||
| 38 | - <nil key="simulatedStatusBarMetrics"/> | ||
| 39 | - <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/> | ||
| 40 | - <point key="canvasLocation" x="548" y="455"/> | ||
| 41 | - </view> | ||
| 42 | - </objects> | ||
| 43 | -</document> |
| @@ -2,37 +2,52 @@ | @@ -2,37 +2,52 @@ | ||
| 2 | "images" : [ | 2 | "images" : [ |
| 3 | { | 3 | { |
| 4 | "idiom" : "iphone", | 4 | "idiom" : "iphone", |
| 5 | - "size" : "29x29", | 5 | + "scale" : "2x", |
| 6 | - "scale" : "2x" | 6 | + "size" : "20x20" |
| 7 | }, | 7 | }, |
| 8 | { | 8 | { |
| 9 | "idiom" : "iphone", | 9 | "idiom" : "iphone", |
| 10 | - "size" : "29x29", | 10 | + "scale" : "3x", |
| 11 | - "scale" : "3x" | 11 | + "size" : "20x20" |
| 12 | }, | 12 | }, |
| 13 | { | 13 | { |
| 14 | "idiom" : "iphone", | 14 | "idiom" : "iphone", |
| 15 | - "size" : "40x40", | 15 | + "scale" : "2x", |
| 16 | - "scale" : "2x" | 16 | + "size" : "29x29" |
| 17 | }, | 17 | }, |
| 18 | { | 18 | { |
| 19 | "idiom" : "iphone", | 19 | "idiom" : "iphone", |
| 20 | - "size" : "40x40", | 20 | + "scale" : "3x", |
| 21 | - "scale" : "3x" | 21 | + "size" : "29x29" |
| 22 | }, | 22 | }, |
| 23 | { | 23 | { |
| 24 | "idiom" : "iphone", | 24 | "idiom" : "iphone", |
| 25 | - "size" : "60x60", | 25 | + "scale" : "2x", |
| 26 | - "scale" : "2x" | 26 | + "size" : "40x40" |
| 27 | }, | 27 | }, |
| 28 | { | 28 | { |
| 29 | "idiom" : "iphone", | 29 | "idiom" : "iphone", |
| 30 | - "size" : "60x60", | 30 | + "scale" : "3x", |
| 31 | - "scale" : "3x" | 31 | + "size" : "40x40" |
| 32 | + }, | ||
| 33 | + { | ||
| 34 | + "idiom" : "iphone", | ||
| 35 | + "scale" : "2x", | ||
| 36 | + "size" : "60x60" | ||
| 37 | + }, | ||
| 38 | + { | ||
| 39 | + "idiom" : "iphone", | ||
| 40 | + "scale" : "3x", | ||
| 41 | + "size" : "60x60" | ||
| 42 | + }, | ||
| 43 | + { | ||
| 44 | + "idiom" : "ios-marketing", | ||
| 45 | + "scale" : "1x", | ||
| 46 | + "size" : "1024x1024" | ||
| 32 | } | 47 | } |
| 33 | ], | 48 | ], |
| 34 | "info" : { | 49 | "info" : { |
| 35 | - "version" : 1, | 50 | + "author" : "xcode", |
| 36 | - "author" : "xcode" | 51 | + "version" : 1 |
| 37 | } | 52 | } |
| 38 | } | 53 | } |
| 1 | 1 | ||
| 2 | -/* Class = "UILabel"; text = "Powered by React Native"; ObjectID = "8ie-xW-0ye"; */ | 2 | +/* Class = "UILabel"; text = "NGPlay"; ObjectID = "GJd-Yh-RWb"; */ |
| 3 | -"8ie-xW-0ye.text" = "React Native"; | 3 | +"GJd-Yh-RWb.text" = "NGPlay"; |
| 4 | 4 | ||
| 5 | -/* Class = "UILabel"; text = "NGPlay"; ObjectID = "kId-c2-rCX"; */ | 5 | +/* Class = "UILabel"; text = "Powered by React Native"; ObjectID = "MN2-I3-ftu"; */ |
| 6 | -"kId-c2-rCX.text" = "NGPlay"; | 6 | +"MN2-I3-ftu.text" = "React Native"; |
| 1 | -platform :ios, '9.0' | 1 | +require_relative '../node_modules/react-native/scripts/react_native_pods' |
| 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' |
| 3 | 3 | ||
| 4 | -def add_flipper_pods! | 4 | +platform :ios, '10.0' |
| 5 | - version = '~> 0.37.0' | ||
| 6 | - pod 'FlipperKit', version, :configuration => 'Debug' | ||
| 7 | - pod 'FlipperKit/FlipperKitLayoutPlugin', version, :configuration => 'Debug' | ||
| 8 | - pod 'FlipperKit/SKIOSNetworkPlugin', version, :configuration => 'Debug' | ||
| 9 | - pod 'FlipperKit/FlipperKitUserDefaultsPlugin', version, :configuration => 'Debug' | ||
| 10 | - pod 'FlipperKit/FlipperKitReactPlugin', version, :configuration => 'Debug' | ||
| 11 | -end | ||
| 12 | - | ||
| 13 | -# Post Install processing for Flipper | ||
| 14 | -def flipper_post_install(installer) | ||
| 15 | - installer.pods_project.targets.each do |target| | ||
| 16 | - if target.name == 'YogaKit' | ||
| 17 | - target.build_configurations.each do |config| | ||
| 18 | - config.build_settings['SWIFT_VERSION'] = '4.1' | ||
| 19 | - end | ||
| 20 | - end | ||
| 21 | - end | ||
| 22 | -end | ||
| 23 | 5 | ||
| 24 | target 'NGPlay' do | 6 | target 'NGPlay' do |
| 25 | - # Pods for NGPlay | 7 | + config = use_native_modules! |
| 26 | - pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" | ||
| 27 | - pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec" | ||
| 28 | - pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired" | ||
| 29 | - pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety" | ||
| 30 | - pod 'React', :path => '../node_modules/react-native/' | ||
| 31 | - pod 'React-Core', :path => '../node_modules/react-native/' | ||
| 32 | - pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules' | ||
| 33 | - pod 'React-Core/DevSupport', :path => '../node_modules/react-native/' | ||
| 34 | - pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' | ||
| 35 | - pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' | ||
| 36 | - pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' | ||
| 37 | - pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' | ||
| 38 | - pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' | ||
| 39 | - pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' | ||
| 40 | - pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' | ||
| 41 | - pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' | ||
| 42 | - pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' | ||
| 43 | - pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/' | ||
| 44 | 8 | ||
| 45 | - pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' | 9 | + use_react_native!(:path => config["reactNativePath"]) |
| 46 | - pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' | ||
| 47 | - pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' | ||
| 48 | - pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' | ||
| 49 | - pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon" | ||
| 50 | - pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" | ||
| 51 | - pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true | ||
| 52 | - | ||
| 53 | - pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' | ||
| 54 | - pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' | ||
| 55 | - pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' | ||
| 56 | 10 | ||
| 57 | # RNPermission start | 11 | # RNPermission start |
| 58 | permissions_path = '../node_modules/react-native-permissions/ios' | 12 | permissions_path = '../node_modules/react-native-permissions/ios' |
| @@ -80,13 +34,11 @@ target 'NGPlay' do | @@ -80,13 +34,11 @@ target 'NGPlay' do | ||
| 80 | # Pods for testing | 34 | # Pods for testing |
| 81 | end | 35 | end |
| 82 | 36 | ||
| 83 | - use_native_modules! | ||
| 84 | - | ||
| 85 | # Enables Flipper. | 37 | # Enables Flipper. |
| 86 | # | 38 | # |
| 87 | # Note that if you have use_frameworks! enabled, Flipper will not work and | 39 | # Note that if you have use_frameworks! enabled, Flipper will not work and |
| 88 | # you should disable these next few lines. | 40 | # you should disable these next few lines. |
| 89 | - add_flipper_pods! | 41 | + use_flipper! |
| 90 | post_install do |installer| | 42 | post_install do |installer| |
| 91 | flipper_post_install(installer) | 43 | flipper_post_install(installer) |
| 92 | end | 44 | end |
| @@ -3,15 +3,15 @@ PODS: | @@ -3,15 +3,15 @@ PODS: | ||
| 3 | - CocoaAsyncSocket (7.6.4) | 3 | - CocoaAsyncSocket (7.6.4) |
| 4 | - CocoaLibEvent (1.0.0) | 4 | - CocoaLibEvent (1.0.0) |
| 5 | - DoubleConversion (1.1.6) | 5 | - DoubleConversion (1.1.6) |
| 6 | - - FBLazyVector (0.62.1) | 6 | + - FBLazyVector (0.63.2) |
| 7 | - - FBReactNativeSpec (0.62.1): | 7 | + - FBReactNativeSpec (0.63.2): |
| 8 | - - Folly (= 2018.10.22.00) | 8 | + - Folly (= 2020.01.13.00) |
| 9 | - - RCTRequired (= 0.62.1) | 9 | + - RCTRequired (= 0.63.2) |
| 10 | - - RCTTypeSafety (= 0.62.1) | 10 | + - RCTTypeSafety (= 0.63.2) |
| 11 | - - React-Core (= 0.62.1) | 11 | + - React-Core (= 0.63.2) |
| 12 | - - React-jsi (= 0.62.1) | 12 | + - React-jsi (= 0.63.2) |
| 13 | - - ReactCommon/turbomodule/core (= 0.62.1) | 13 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 14 | - - Flipper (0.37.0): | 14 | + - Flipper (0.41.5): |
| 15 | - Flipper-Folly (~> 2.2) | 15 | - Flipper-Folly (~> 2.2) |
| 16 | - Flipper-RSocket (~> 1.1) | 16 | - Flipper-RSocket (~> 1.1) |
| 17 | - Flipper-DoubleConversion (1.1.7) | 17 | - Flipper-DoubleConversion (1.1.7) |
| @@ -25,44 +25,44 @@ PODS: | @@ -25,44 +25,44 @@ PODS: | ||
| 25 | - Flipper-PeerTalk (0.0.4) | 25 | - Flipper-PeerTalk (0.0.4) |
| 26 | - Flipper-RSocket (1.1.0): | 26 | - Flipper-RSocket (1.1.0): |
| 27 | - Flipper-Folly (~> 2.2) | 27 | - Flipper-Folly (~> 2.2) |
| 28 | - - FlipperKit (0.37.0): | 28 | + - FlipperKit (0.41.5): |
| 29 | - - FlipperKit/Core (= 0.37.0) | 29 | + - FlipperKit/Core (= 0.41.5) |
| 30 | - - FlipperKit/Core (0.37.0): | 30 | + - FlipperKit/Core (0.41.5): |
| 31 | - - Flipper (~> 0.37.0) | 31 | + - Flipper (~> 0.41.5) |
| 32 | - FlipperKit/CppBridge | 32 | - FlipperKit/CppBridge |
| 33 | - FlipperKit/FBCxxFollyDynamicConvert | 33 | - FlipperKit/FBCxxFollyDynamicConvert |
| 34 | - FlipperKit/FBDefines | 34 | - FlipperKit/FBDefines |
| 35 | - FlipperKit/FKPortForwarding | 35 | - FlipperKit/FKPortForwarding |
| 36 | - - FlipperKit/CppBridge (0.37.0): | 36 | + - FlipperKit/CppBridge (0.41.5): |
| 37 | - - Flipper (~> 0.37.0) | 37 | + - Flipper (~> 0.41.5) |
| 38 | - - FlipperKit/FBCxxFollyDynamicConvert (0.37.0): | 38 | + - FlipperKit/FBCxxFollyDynamicConvert (0.41.5): |
| 39 | - Flipper-Folly (~> 2.2) | 39 | - Flipper-Folly (~> 2.2) |
| 40 | - - FlipperKit/FBDefines (0.37.0) | 40 | + - FlipperKit/FBDefines (0.41.5) |
| 41 | - - FlipperKit/FKPortForwarding (0.37.0): | 41 | + - FlipperKit/FKPortForwarding (0.41.5): |
| 42 | - CocoaAsyncSocket (~> 7.6) | 42 | - CocoaAsyncSocket (~> 7.6) |
| 43 | - Flipper-PeerTalk (~> 0.0.4) | 43 | - Flipper-PeerTalk (~> 0.0.4) |
| 44 | - - FlipperKit/FlipperKitHighlightOverlay (0.37.0) | 44 | + - FlipperKit/FlipperKitHighlightOverlay (0.41.5) |
| 45 | - - FlipperKit/FlipperKitLayoutPlugin (0.37.0): | 45 | + - FlipperKit/FlipperKitLayoutPlugin (0.41.5): |
| 46 | - FlipperKit/Core | 46 | - FlipperKit/Core |
| 47 | - FlipperKit/FlipperKitHighlightOverlay | 47 | - FlipperKit/FlipperKitHighlightOverlay |
| 48 | - FlipperKit/FlipperKitLayoutTextSearchable | 48 | - FlipperKit/FlipperKitLayoutTextSearchable |
| 49 | - YogaKit (~> 1.18) | 49 | - YogaKit (~> 1.18) |
| 50 | - - FlipperKit/FlipperKitLayoutTextSearchable (0.37.0) | 50 | + - FlipperKit/FlipperKitLayoutTextSearchable (0.41.5) |
| 51 | - - FlipperKit/FlipperKitNetworkPlugin (0.37.0): | 51 | + - FlipperKit/FlipperKitNetworkPlugin (0.41.5): |
| 52 | - FlipperKit/Core | 52 | - FlipperKit/Core |
| 53 | - - FlipperKit/FlipperKitReactPlugin (0.37.0): | 53 | + - FlipperKit/FlipperKitReactPlugin (0.41.5): |
| 54 | - FlipperKit/Core | 54 | - FlipperKit/Core |
| 55 | - - FlipperKit/FlipperKitUserDefaultsPlugin (0.37.0): | 55 | + - FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5): |
| 56 | - FlipperKit/Core | 56 | - FlipperKit/Core |
| 57 | - - FlipperKit/SKIOSNetworkPlugin (0.37.0): | 57 | + - FlipperKit/SKIOSNetworkPlugin (0.41.5): |
| 58 | - FlipperKit/Core | 58 | - FlipperKit/Core |
| 59 | - FlipperKit/FlipperKitNetworkPlugin | 59 | - FlipperKit/FlipperKitNetworkPlugin |
| 60 | - - Folly (2018.10.22.00): | 60 | + - Folly (2020.01.13.00): |
| 61 | - boost-for-react-native | 61 | - boost-for-react-native |
| 62 | - DoubleConversion | 62 | - DoubleConversion |
| 63 | - - Folly/Default (= 2018.10.22.00) | 63 | + - Folly/Default (= 2020.01.13.00) |
| 64 | - glog | 64 | - glog |
| 65 | - - Folly/Default (2018.10.22.00): | 65 | + - Folly/Default (2020.01.13.00): |
| 66 | - boost-for-react-native | 66 | - boost-for-react-native |
| 67 | - DoubleConversion | 67 | - DoubleConversion |
| 68 | - glog | 68 | - glog |
| @@ -76,169 +76,172 @@ PODS: | @@ -76,169 +76,172 @@ PODS: | ||
| 76 | - RNPermissions | 76 | - RNPermissions |
| 77 | - Permission-PhotoLibrary (2.1.2): | 77 | - Permission-PhotoLibrary (2.1.2): |
| 78 | - RNPermissions | 78 | - RNPermissions |
| 79 | - - RCTRequired (0.62.1) | 79 | + - RCTRequired (0.63.2) |
| 80 | - - RCTTypeSafety (0.62.1): | 80 | + - RCTTypeSafety (0.63.2): |
| 81 | - - FBLazyVector (= 0.62.1) | 81 | + - FBLazyVector (= 0.63.2) |
| 82 | - - Folly (= 2018.10.22.00) | 82 | + - Folly (= 2020.01.13.00) |
| 83 | - - RCTRequired (= 0.62.1) | 83 | + - RCTRequired (= 0.63.2) |
| 84 | - - React-Core (= 0.62.1) | 84 | + - React-Core (= 0.63.2) |
| 85 | - - React (0.62.1): | 85 | + - React (0.63.2): |
| 86 | - - React-Core (= 0.62.1) | 86 | + - React-Core (= 0.63.2) |
| 87 | - - React-Core/DevSupport (= 0.62.1) | 87 | + - React-Core/DevSupport (= 0.63.2) |
| 88 | - - React-Core/RCTWebSocket (= 0.62.1) | 88 | + - React-Core/RCTWebSocket (= 0.63.2) |
| 89 | - - React-RCTActionSheet (= 0.62.1) | 89 | + - React-RCTActionSheet (= 0.63.2) |
| 90 | - - React-RCTAnimation (= 0.62.1) | 90 | + - React-RCTAnimation (= 0.63.2) |
| 91 | - - React-RCTBlob (= 0.62.1) | 91 | + - React-RCTBlob (= 0.63.2) |
| 92 | - - React-RCTImage (= 0.62.1) | 92 | + - React-RCTImage (= 0.63.2) |
| 93 | - - React-RCTLinking (= 0.62.1) | 93 | + - React-RCTLinking (= 0.63.2) |
| 94 | - - React-RCTNetwork (= 0.62.1) | 94 | + - React-RCTNetwork (= 0.63.2) |
| 95 | - - React-RCTSettings (= 0.62.1) | 95 | + - React-RCTSettings (= 0.63.2) |
| 96 | - - React-RCTText (= 0.62.1) | 96 | + - React-RCTText (= 0.63.2) |
| 97 | - - React-RCTVibration (= 0.62.1) | 97 | + - React-RCTVibration (= 0.63.2) |
| 98 | - - React-Core (0.62.1): | 98 | + - React-callinvoker (0.63.2) |
| 99 | - - Folly (= 2018.10.22.00) | 99 | + - React-Core (0.63.2): |
| 100 | + - Folly (= 2020.01.13.00) | ||
| 100 | - glog | 101 | - glog |
| 101 | - - React-Core/Default (= 0.62.1) | 102 | + - React-Core/Default (= 0.63.2) |
| 102 | - - React-cxxreact (= 0.62.1) | 103 | + - React-cxxreact (= 0.63.2) |
| 103 | - - React-jsi (= 0.62.1) | 104 | + - React-jsi (= 0.63.2) |
| 104 | - - React-jsiexecutor (= 0.62.1) | 105 | + - React-jsiexecutor (= 0.63.2) |
| 105 | - Yoga | 106 | - Yoga |
| 106 | - - React-Core/CoreModulesHeaders (0.62.1): | 107 | + - React-Core/CoreModulesHeaders (0.63.2): |
| 107 | - - Folly (= 2018.10.22.00) | 108 | + - Folly (= 2020.01.13.00) |
| 108 | - glog | 109 | - glog |
| 109 | - React-Core/Default | 110 | - React-Core/Default |
| 110 | - - React-cxxreact (= 0.62.1) | 111 | + - React-cxxreact (= 0.63.2) |
| 111 | - - React-jsi (= 0.62.1) | 112 | + - React-jsi (= 0.63.2) |
| 112 | - - React-jsiexecutor (= 0.62.1) | 113 | + - React-jsiexecutor (= 0.63.2) |
| 113 | - Yoga | 114 | - Yoga |
| 114 | - - React-Core/Default (0.62.1): | 115 | + - React-Core/Default (0.63.2): |
| 115 | - - Folly (= 2018.10.22.00) | 116 | + - Folly (= 2020.01.13.00) |
| 116 | - glog | 117 | - glog |
| 117 | - - React-cxxreact (= 0.62.1) | 118 | + - React-cxxreact (= 0.63.2) |
| 118 | - - React-jsi (= 0.62.1) | 119 | + - React-jsi (= 0.63.2) |
| 119 | - - React-jsiexecutor (= 0.62.1) | 120 | + - React-jsiexecutor (= 0.63.2) |
| 120 | - Yoga | 121 | - Yoga |
| 121 | - - React-Core/DevSupport (0.62.1): | 122 | + - React-Core/DevSupport (0.63.2): |
| 122 | - - Folly (= 2018.10.22.00) | 123 | + - Folly (= 2020.01.13.00) |
| 123 | - glog | 124 | - glog |
| 124 | - - React-Core/Default (= 0.62.1) | 125 | + - React-Core/Default (= 0.63.2) |
| 125 | - - React-Core/RCTWebSocket (= 0.62.1) | 126 | + - React-Core/RCTWebSocket (= 0.63.2) |
| 126 | - - React-cxxreact (= 0.62.1) | 127 | + - React-cxxreact (= 0.63.2) |
| 127 | - - React-jsi (= 0.62.1) | 128 | + - React-jsi (= 0.63.2) |
| 128 | - - React-jsiexecutor (= 0.62.1) | 129 | + - React-jsiexecutor (= 0.63.2) |
| 129 | - - React-jsinspector (= 0.62.1) | 130 | + - React-jsinspector (= 0.63.2) |
| 130 | - Yoga | 131 | - Yoga |
| 131 | - - React-Core/RCTActionSheetHeaders (0.62.1): | 132 | + - React-Core/RCTActionSheetHeaders (0.63.2): |
| 132 | - - Folly (= 2018.10.22.00) | 133 | + - Folly (= 2020.01.13.00) |
| 133 | - glog | 134 | - glog |
| 134 | - React-Core/Default | 135 | - React-Core/Default |
| 135 | - - React-cxxreact (= 0.62.1) | 136 | + - React-cxxreact (= 0.63.2) |
| 136 | - - React-jsi (= 0.62.1) | 137 | + - React-jsi (= 0.63.2) |
| 137 | - - React-jsiexecutor (= 0.62.1) | 138 | + - React-jsiexecutor (= 0.63.2) |
| 138 | - Yoga | 139 | - Yoga |
| 139 | - - React-Core/RCTAnimationHeaders (0.62.1): | 140 | + - React-Core/RCTAnimationHeaders (0.63.2): |
| 140 | - - Folly (= 2018.10.22.00) | 141 | + - Folly (= 2020.01.13.00) |
| 141 | - glog | 142 | - glog |
| 142 | - React-Core/Default | 143 | - React-Core/Default |
| 143 | - - React-cxxreact (= 0.62.1) | 144 | + - React-cxxreact (= 0.63.2) |
| 144 | - - React-jsi (= 0.62.1) | 145 | + - React-jsi (= 0.63.2) |
| 145 | - - React-jsiexecutor (= 0.62.1) | 146 | + - React-jsiexecutor (= 0.63.2) |
| 146 | - Yoga | 147 | - Yoga |
| 147 | - - React-Core/RCTBlobHeaders (0.62.1): | 148 | + - React-Core/RCTBlobHeaders (0.63.2): |
| 148 | - - Folly (= 2018.10.22.00) | 149 | + - Folly (= 2020.01.13.00) |
| 149 | - glog | 150 | - glog |
| 150 | - React-Core/Default | 151 | - React-Core/Default |
| 151 | - - React-cxxreact (= 0.62.1) | 152 | + - React-cxxreact (= 0.63.2) |
| 152 | - - React-jsi (= 0.62.1) | 153 | + - React-jsi (= 0.63.2) |
| 153 | - - React-jsiexecutor (= 0.62.1) | 154 | + - React-jsiexecutor (= 0.63.2) |
| 154 | - Yoga | 155 | - Yoga |
| 155 | - - React-Core/RCTImageHeaders (0.62.1): | 156 | + - React-Core/RCTImageHeaders (0.63.2): |
| 156 | - - Folly (= 2018.10.22.00) | 157 | + - Folly (= 2020.01.13.00) |
| 157 | - glog | 158 | - glog |
| 158 | - React-Core/Default | 159 | - React-Core/Default |
| 159 | - - React-cxxreact (= 0.62.1) | 160 | + - React-cxxreact (= 0.63.2) |
| 160 | - - React-jsi (= 0.62.1) | 161 | + - React-jsi (= 0.63.2) |
| 161 | - - React-jsiexecutor (= 0.62.1) | 162 | + - React-jsiexecutor (= 0.63.2) |
| 162 | - Yoga | 163 | - Yoga |
| 163 | - - React-Core/RCTLinkingHeaders (0.62.1): | 164 | + - React-Core/RCTLinkingHeaders (0.63.2): |
| 164 | - - Folly (= 2018.10.22.00) | 165 | + - Folly (= 2020.01.13.00) |
| 165 | - glog | 166 | - glog |
| 166 | - React-Core/Default | 167 | - React-Core/Default |
| 167 | - - React-cxxreact (= 0.62.1) | 168 | + - React-cxxreact (= 0.63.2) |
| 168 | - - React-jsi (= 0.62.1) | 169 | + - React-jsi (= 0.63.2) |
| 169 | - - React-jsiexecutor (= 0.62.1) | 170 | + - React-jsiexecutor (= 0.63.2) |
| 170 | - Yoga | 171 | - Yoga |
| 171 | - - React-Core/RCTNetworkHeaders (0.62.1): | 172 | + - React-Core/RCTNetworkHeaders (0.63.2): |
| 172 | - - Folly (= 2018.10.22.00) | 173 | + - Folly (= 2020.01.13.00) |
| 173 | - glog | 174 | - glog |
| 174 | - React-Core/Default | 175 | - React-Core/Default |
| 175 | - - React-cxxreact (= 0.62.1) | 176 | + - React-cxxreact (= 0.63.2) |
| 176 | - - React-jsi (= 0.62.1) | 177 | + - React-jsi (= 0.63.2) |
| 177 | - - React-jsiexecutor (= 0.62.1) | 178 | + - React-jsiexecutor (= 0.63.2) |
| 178 | - Yoga | 179 | - Yoga |
| 179 | - - React-Core/RCTSettingsHeaders (0.62.1): | 180 | + - React-Core/RCTSettingsHeaders (0.63.2): |
| 180 | - - Folly (= 2018.10.22.00) | 181 | + - Folly (= 2020.01.13.00) |
| 181 | - glog | 182 | - glog |
| 182 | - React-Core/Default | 183 | - React-Core/Default |
| 183 | - - React-cxxreact (= 0.62.1) | 184 | + - React-cxxreact (= 0.63.2) |
| 184 | - - React-jsi (= 0.62.1) | 185 | + - React-jsi (= 0.63.2) |
| 185 | - - React-jsiexecutor (= 0.62.1) | 186 | + - React-jsiexecutor (= 0.63.2) |
| 186 | - Yoga | 187 | - Yoga |
| 187 | - - React-Core/RCTTextHeaders (0.62.1): | 188 | + - React-Core/RCTTextHeaders (0.63.2): |
| 188 | - - Folly (= 2018.10.22.00) | 189 | + - Folly (= 2020.01.13.00) |
| 189 | - glog | 190 | - glog |
| 190 | - React-Core/Default | 191 | - React-Core/Default |
| 191 | - - React-cxxreact (= 0.62.1) | 192 | + - React-cxxreact (= 0.63.2) |
| 192 | - - React-jsi (= 0.62.1) | 193 | + - React-jsi (= 0.63.2) |
| 193 | - - React-jsiexecutor (= 0.62.1) | 194 | + - React-jsiexecutor (= 0.63.2) |
| 194 | - Yoga | 195 | - Yoga |
| 195 | - - React-Core/RCTVibrationHeaders (0.62.1): | 196 | + - React-Core/RCTVibrationHeaders (0.63.2): |
| 196 | - - Folly (= 2018.10.22.00) | 197 | + - Folly (= 2020.01.13.00) |
| 197 | - glog | 198 | - glog |
| 198 | - React-Core/Default | 199 | - React-Core/Default |
| 199 | - - React-cxxreact (= 0.62.1) | 200 | + - React-cxxreact (= 0.63.2) |
| 200 | - - React-jsi (= 0.62.1) | 201 | + - React-jsi (= 0.63.2) |
| 201 | - - React-jsiexecutor (= 0.62.1) | 202 | + - React-jsiexecutor (= 0.63.2) |
| 202 | - Yoga | 203 | - Yoga |
| 203 | - - React-Core/RCTWebSocket (0.62.1): | 204 | + - React-Core/RCTWebSocket (0.63.2): |
| 204 | - - Folly (= 2018.10.22.00) | 205 | + - Folly (= 2020.01.13.00) |
| 205 | - glog | 206 | - glog |
| 206 | - - React-Core/Default (= 0.62.1) | 207 | + - React-Core/Default (= 0.63.2) |
| 207 | - - React-cxxreact (= 0.62.1) | 208 | + - React-cxxreact (= 0.63.2) |
| 208 | - - React-jsi (= 0.62.1) | 209 | + - React-jsi (= 0.63.2) |
| 209 | - - React-jsiexecutor (= 0.62.1) | 210 | + - React-jsiexecutor (= 0.63.2) |
| 210 | - Yoga | 211 | - Yoga |
| 211 | - - React-CoreModules (0.62.1): | 212 | + - React-CoreModules (0.63.2): |
| 212 | - - FBReactNativeSpec (= 0.62.1) | 213 | + - FBReactNativeSpec (= 0.63.2) |
| 213 | - - Folly (= 2018.10.22.00) | 214 | + - Folly (= 2020.01.13.00) |
| 214 | - - RCTTypeSafety (= 0.62.1) | 215 | + - RCTTypeSafety (= 0.63.2) |
| 215 | - - React-Core/CoreModulesHeaders (= 0.62.1) | 216 | + - React-Core/CoreModulesHeaders (= 0.63.2) |
| 216 | - - React-RCTImage (= 0.62.1) | 217 | + - React-jsi (= 0.63.2) |
| 217 | - - ReactCommon/turbomodule/core (= 0.62.1) | 218 | + - React-RCTImage (= 0.63.2) |
| 218 | - - React-cxxreact (0.62.1): | 219 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 220 | + - React-cxxreact (0.63.2): | ||
| 219 | - boost-for-react-native (= 1.63.0) | 221 | - boost-for-react-native (= 1.63.0) |
| 220 | - DoubleConversion | 222 | - DoubleConversion |
| 221 | - - Folly (= 2018.10.22.00) | 223 | + - Folly (= 2020.01.13.00) |
| 222 | - glog | 224 | - glog |
| 223 | - - React-jsinspector (= 0.62.1) | 225 | + - React-callinvoker (= 0.63.2) |
| 224 | - - React-jsi (0.62.1): | 226 | + - React-jsinspector (= 0.63.2) |
| 227 | + - React-jsi (0.63.2): | ||
| 225 | - boost-for-react-native (= 1.63.0) | 228 | - boost-for-react-native (= 1.63.0) |
| 226 | - DoubleConversion | 229 | - DoubleConversion |
| 227 | - - Folly (= 2018.10.22.00) | 230 | + - Folly (= 2020.01.13.00) |
| 228 | - glog | 231 | - glog |
| 229 | - - React-jsi/Default (= 0.62.1) | 232 | + - React-jsi/Default (= 0.63.2) |
| 230 | - - React-jsi/Default (0.62.1): | 233 | + - React-jsi/Default (0.63.2): |
| 231 | - boost-for-react-native (= 1.63.0) | 234 | - boost-for-react-native (= 1.63.0) |
| 232 | - DoubleConversion | 235 | - DoubleConversion |
| 233 | - - Folly (= 2018.10.22.00) | 236 | + - Folly (= 2020.01.13.00) |
| 234 | - glog | 237 | - glog |
| 235 | - - React-jsiexecutor (0.62.1): | 238 | + - React-jsiexecutor (0.63.2): |
| 236 | - DoubleConversion | 239 | - DoubleConversion |
| 237 | - - Folly (= 2018.10.22.00) | 240 | + - Folly (= 2020.01.13.00) |
| 238 | - glog | 241 | - glog |
| 239 | - - React-cxxreact (= 0.62.1) | 242 | + - React-cxxreact (= 0.63.2) |
| 240 | - - React-jsi (= 0.62.1) | 243 | + - React-jsi (= 0.63.2) |
| 241 | - - React-jsinspector (0.62.1) | 244 | + - React-jsinspector (0.63.2) |
| 242 | - react-native-camera (3.23.1): | 245 | - react-native-camera (3.23.1): |
| 243 | - React | 246 | - React |
| 244 | - react-native-camera/RCT (= 3.23.1) | 247 | - react-native-camera/RCT (= 3.23.1) |
| @@ -257,65 +260,66 @@ PODS: | @@ -257,65 +260,66 @@ PODS: | ||
| 257 | - React | 260 | - React |
| 258 | - react-native-webview (9.1.1): | 261 | - react-native-webview (9.1.1): |
| 259 | - React | 262 | - React |
| 260 | - - React-RCTActionSheet (0.62.1): | 263 | + - React-RCTActionSheet (0.63.2): |
| 261 | - - React-Core/RCTActionSheetHeaders (= 0.62.1) | 264 | + - React-Core/RCTActionSheetHeaders (= 0.63.2) |
| 262 | - - React-RCTAnimation (0.62.1): | 265 | + - React-RCTAnimation (0.63.2): |
| 263 | - - FBReactNativeSpec (= 0.62.1) | 266 | + - FBReactNativeSpec (= 0.63.2) |
| 264 | - - Folly (= 2018.10.22.00) | 267 | + - Folly (= 2020.01.13.00) |
| 265 | - - RCTTypeSafety (= 0.62.1) | 268 | + - RCTTypeSafety (= 0.63.2) |
| 266 | - - React-Core/RCTAnimationHeaders (= 0.62.1) | 269 | + - React-Core/RCTAnimationHeaders (= 0.63.2) |
| 267 | - - ReactCommon/turbomodule/core (= 0.62.1) | 270 | + - React-jsi (= 0.63.2) |
| 268 | - - React-RCTBlob (0.62.1): | 271 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 269 | - - FBReactNativeSpec (= 0.62.1) | 272 | + - React-RCTBlob (0.63.2): |
| 270 | - - Folly (= 2018.10.22.00) | 273 | + - FBReactNativeSpec (= 0.63.2) |
| 271 | - - React-Core/RCTBlobHeaders (= 0.62.1) | 274 | + - Folly (= 2020.01.13.00) |
| 272 | - - React-Core/RCTWebSocket (= 0.62.1) | 275 | + - React-Core/RCTBlobHeaders (= 0.63.2) |
| 273 | - - React-jsi (= 0.62.1) | 276 | + - React-Core/RCTWebSocket (= 0.63.2) |
| 274 | - - React-RCTNetwork (= 0.62.1) | 277 | + - React-jsi (= 0.63.2) |
| 275 | - - ReactCommon/turbomodule/core (= 0.62.1) | 278 | + - React-RCTNetwork (= 0.63.2) |
| 276 | - - React-RCTImage (0.62.1): | 279 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 277 | - - FBReactNativeSpec (= 0.62.1) | 280 | + - React-RCTImage (0.63.2): |
| 278 | - - Folly (= 2018.10.22.00) | 281 | + - FBReactNativeSpec (= 0.63.2) |
| 279 | - - RCTTypeSafety (= 0.62.1) | 282 | + - Folly (= 2020.01.13.00) |
| 280 | - - React-Core/RCTImageHeaders (= 0.62.1) | 283 | + - RCTTypeSafety (= 0.63.2) |
| 281 | - - React-RCTNetwork (= 0.62.1) | 284 | + - React-Core/RCTImageHeaders (= 0.63.2) |
| 282 | - - ReactCommon/turbomodule/core (= 0.62.1) | 285 | + - React-jsi (= 0.63.2) |
| 283 | - - React-RCTLinking (0.62.1): | 286 | + - React-RCTNetwork (= 0.63.2) |
| 284 | - - FBReactNativeSpec (= 0.62.1) | 287 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 285 | - - React-Core/RCTLinkingHeaders (= 0.62.1) | 288 | + - React-RCTLinking (0.63.2): |
| 286 | - - ReactCommon/turbomodule/core (= 0.62.1) | 289 | + - FBReactNativeSpec (= 0.63.2) |
| 287 | - - React-RCTNetwork (0.62.1): | 290 | + - React-Core/RCTLinkingHeaders (= 0.63.2) |
| 288 | - - FBReactNativeSpec (= 0.62.1) | 291 | + - React-jsi (= 0.63.2) |
| 289 | - - Folly (= 2018.10.22.00) | 292 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 290 | - - RCTTypeSafety (= 0.62.1) | 293 | + - React-RCTNetwork (0.63.2): |
| 291 | - - React-Core/RCTNetworkHeaders (= 0.62.1) | 294 | + - FBReactNativeSpec (= 0.63.2) |
| 292 | - - ReactCommon/turbomodule/core (= 0.62.1) | 295 | + - Folly (= 2020.01.13.00) |
| 293 | - - React-RCTSettings (0.62.1): | 296 | + - RCTTypeSafety (= 0.63.2) |
| 294 | - - FBReactNativeSpec (= 0.62.1) | 297 | + - React-Core/RCTNetworkHeaders (= 0.63.2) |
| 295 | - - Folly (= 2018.10.22.00) | 298 | + - React-jsi (= 0.63.2) |
| 296 | - - RCTTypeSafety (= 0.62.1) | 299 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 297 | - - React-Core/RCTSettingsHeaders (= 0.62.1) | 300 | + - React-RCTSettings (0.63.2): |
| 298 | - - ReactCommon/turbomodule/core (= 0.62.1) | 301 | + - FBReactNativeSpec (= 0.63.2) |
| 299 | - - React-RCTText (0.62.1): | 302 | + - Folly (= 2020.01.13.00) |
| 300 | - - React-Core/RCTTextHeaders (= 0.62.1) | 303 | + - RCTTypeSafety (= 0.63.2) |
| 301 | - - React-RCTVibration (0.62.1): | 304 | + - React-Core/RCTSettingsHeaders (= 0.63.2) |
| 302 | - - FBReactNativeSpec (= 0.62.1) | 305 | + - React-jsi (= 0.63.2) |
| 303 | - - Folly (= 2018.10.22.00) | 306 | + - ReactCommon/turbomodule/core (= 0.63.2) |
| 304 | - - React-Core/RCTVibrationHeaders (= 0.62.1) | 307 | + - React-RCTText (0.63.2): |
| 305 | - - ReactCommon/turbomodule/core (= 0.62.1) | 308 | + - React-Core/RCTTextHeaders (= 0.63.2) |
| 306 | - - ReactCommon/callinvoker (0.62.1): | 309 | + - React-RCTVibration (0.63.2): |
| 310 | + - FBReactNativeSpec (= 0.63.2) | ||
| 311 | + - Folly (= 2020.01.13.00) | ||
| 312 | + - React-Core/RCTVibrationHeaders (= 0.63.2) | ||
| 313 | + - React-jsi (= 0.63.2) | ||
| 314 | + - ReactCommon/turbomodule/core (= 0.63.2) | ||
| 315 | + - ReactCommon/turbomodule/core (0.63.2): | ||
| 307 | - DoubleConversion | 316 | - DoubleConversion |
| 308 | - - Folly (= 2018.10.22.00) | 317 | + - Folly (= 2020.01.13.00) |
| 309 | - glog | 318 | - glog |
| 310 | - - React-cxxreact (= 0.62.1) | 319 | + - React-callinvoker (= 0.63.2) |
| 311 | - - ReactCommon/turbomodule/core (0.62.1): | 320 | + - React-Core (= 0.63.2) |
| 312 | - - DoubleConversion | 321 | + - React-cxxreact (= 0.63.2) |
| 313 | - - Folly (= 2018.10.22.00) | 322 | + - React-jsi (= 0.63.2) |
| 314 | - - glog | ||
| 315 | - - React-Core (= 0.62.1) | ||
| 316 | - - React-cxxreact (= 0.62.1) | ||
| 317 | - - React-jsi (= 0.62.1) | ||
| 318 | - - ReactCommon/callinvoker (= 0.62.1) | ||
| 319 | - ReactNativeART (1.2.0): | 323 | - ReactNativeART (1.2.0): |
| 320 | - React | 324 | - React |
| 321 | - ReactNativeDarkMode (0.2.2): | 325 | - ReactNativeDarkMode (0.2.2): |
| @@ -362,11 +366,25 @@ DEPENDENCIES: | @@ -362,11 +366,25 @@ DEPENDENCIES: | ||
| 362 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) | 366 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) |
| 363 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) | 367 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) |
| 364 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) | 368 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) |
| 365 | - - FlipperKit (~> 0.37.0) | 369 | + - Flipper (~> 0.41.1) |
| 366 | - - FlipperKit/FlipperKitLayoutPlugin (~> 0.37.0) | 370 | + - Flipper-DoubleConversion (= 1.1.7) |
| 367 | - - FlipperKit/FlipperKitReactPlugin (~> 0.37.0) | 371 | + - Flipper-Folly (~> 2.2) |
| 368 | - - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.37.0) | 372 | + - Flipper-Glog (= 0.3.6) |
| 369 | - - FlipperKit/SKIOSNetworkPlugin (~> 0.37.0) | 373 | + - Flipper-PeerTalk (~> 0.0.4) |
| 374 | + - Flipper-RSocket (~> 1.1) | ||
| 375 | + - FlipperKit (~> 0.41.1) | ||
| 376 | + - FlipperKit/Core (~> 0.41.1) | ||
| 377 | + - FlipperKit/CppBridge (~> 0.41.1) | ||
| 378 | + - FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1) | ||
| 379 | + - FlipperKit/FBDefines (~> 0.41.1) | ||
| 380 | + - FlipperKit/FKPortForwarding (~> 0.41.1) | ||
| 381 | + - FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1) | ||
| 382 | + - FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1) | ||
| 383 | + - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1) | ||
| 384 | + - FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1) | ||
| 385 | + - FlipperKit/FlipperKitReactPlugin (~> 0.41.1) | ||
| 386 | + - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1) | ||
| 387 | + - FlipperKit/SKIOSNetworkPlugin (~> 0.41.1) | ||
| 370 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) | 388 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) |
| 371 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) | 389 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) |
| 372 | - Permission-Camera (from `../node_modules/react-native-permissions/ios/Camera.podspec`) | 390 | - Permission-Camera (from `../node_modules/react-native-permissions/ios/Camera.podspec`) |
| @@ -375,6 +393,7 @@ DEPENDENCIES: | @@ -375,6 +393,7 @@ DEPENDENCIES: | ||
| 375 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) | 393 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) |
| 376 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) | 394 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) |
| 377 | - React (from `../node_modules/react-native/`) | 395 | - React (from `../node_modules/react-native/`) |
| 396 | + - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) | ||
| 378 | - React-Core (from `../node_modules/react-native/`) | 397 | - React-Core (from `../node_modules/react-native/`) |
| 379 | - React-Core/DevSupport (from `../node_modules/react-native/`) | 398 | - React-Core/DevSupport (from `../node_modules/react-native/`) |
| 380 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) | 399 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) |
| @@ -398,7 +417,6 @@ DEPENDENCIES: | @@ -398,7 +417,6 @@ DEPENDENCIES: | ||
| 398 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) | 417 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) |
| 399 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) | 418 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) |
| 400 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) | 419 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) |
| 401 | - - ReactCommon/callinvoker (from `../node_modules/react-native/ReactCommon`) | ||
| 402 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) | 420 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) |
| 403 | - "ReactNativeART (from `../node_modules/@react-native-community/art`)" | 421 | - "ReactNativeART (from `../node_modules/@react-native-community/art`)" |
| 404 | - ReactNativeDarkMode (from `../node_modules/react-native-dark-mode`) | 422 | - ReactNativeDarkMode (from `../node_modules/react-native-dark-mode`) |
| @@ -456,6 +474,8 @@ EXTERNAL SOURCES: | @@ -456,6 +474,8 @@ EXTERNAL SOURCES: | ||
| 456 | :path: "../node_modules/react-native/Libraries/TypeSafety" | 474 | :path: "../node_modules/react-native/Libraries/TypeSafety" |
| 457 | React: | 475 | React: |
| 458 | :path: "../node_modules/react-native/" | 476 | :path: "../node_modules/react-native/" |
| 477 | + React-callinvoker: | ||
| 478 | + :path: "../node_modules/react-native/ReactCommon/callinvoker" | ||
| 459 | React-Core: | 479 | React-Core: |
| 460 | :path: "../node_modules/react-native/" | 480 | :path: "../node_modules/react-native/" |
| 461 | React-CoreModules: | 481 | React-CoreModules: |
| @@ -537,47 +557,48 @@ SPEC CHECKSUMS: | @@ -537,47 +557,48 @@ SPEC CHECKSUMS: | ||
| 537 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c | 557 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c |
| 538 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 | 558 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 |
| 539 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f | 559 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f |
| 540 | - DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 | 560 | + DoubleConversion: cde416483dac037923206447da6e1454df403714 |
| 541 | - FBLazyVector: 95ee3e58937a6052f86b0e32f142388c22fa22c5 | 561 | + FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37 |
| 542 | - FBReactNativeSpec: 26dd6459299e48cd64eb397c45635e466dba9f45 | 562 | + FBReactNativeSpec: dc7fa9088f0f2a998503a352b0554d69a4391c5a |
| 543 | - Flipper: 1670db365568191bd123a0c905b834e77ba9e3d3 | 563 | + Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13 |
| 544 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 | 564 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 |
| 545 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3 | 565 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3 |
| 546 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 | 566 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 |
| 547 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 | 567 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 |
| 548 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7 | 568 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7 |
| 549 | - FlipperKit: afd4259ef9eadeeb2d30250b37d95cb3b6b97a69 | 569 | + FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83 |
| 550 | - Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 | 570 | + Folly: b73c3869541e86821df3c387eb0af5f65addfab4 |
| 551 | - glog: 1f3da668190260b06b429bb211bfbee5cd790c28 | 571 | + glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3 |
| 552 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 | 572 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 |
| 553 | Permission-Camera: ebdba00e6926aface672cc547b19fa317c3d956e | 573 | Permission-Camera: ebdba00e6926aface672cc547b19fa317c3d956e |
| 554 | Permission-LocationWhenInUse: cfd0d39a1c8ab2e9aeb0a1460800f85f74705404 | 574 | Permission-LocationWhenInUse: cfd0d39a1c8ab2e9aeb0a1460800f85f74705404 |
| 555 | Permission-PhotoLibrary: e29736d903e867d278747eb30951528303425f64 | 575 | Permission-PhotoLibrary: e29736d903e867d278747eb30951528303425f64 |
| 556 | - RCTRequired: e291538a455f5ad1afc2139a4288990be0cadd46 | 576 | + RCTRequired: f13f25e7b12f925f1f6a6a8c69d929a03c0129fe |
| 557 | - RCTTypeSafety: 8b6237185765dd9a03a3647807e08864105b1f95 | 577 | + RCTTypeSafety: 44982c5c8e43ff4141eb519a8ddc88059acd1f3a |
| 558 | - React: 7b33e15fab929c47ac9c3c94c409258b13cfe452 | 578 | + React: e1c65dd41cb9db13b99f24608e47dd595f28ca9a |
| 559 | - React-Core: 9a164d53492e2d8a84e7acf87988253dff09cf93 | 579 | + React-callinvoker: 552a6a6bc8b3bb794cf108ad59e5a9e2e3b4fc98 |
| 560 | - React-CoreModules: 9aba468d44532cbc301e1323a62b3d796c69c26d | 580 | + React-Core: 9d341e725dc9cd2f49e4c49ad1fc4e8776aa2639 |
| 561 | - React-cxxreact: 1eed6bc2a4f8e25910994b5dfca1acf1878b25c7 | 581 | + React-CoreModules: 5335e168165da7f7083ce7147768d36d3e292318 |
| 562 | - React-jsi: 600d8e42510c3254fd2abd702f4b9d3f598d8f52 | 582 | + React-cxxreact: d3261ec5f7d11743fbf21e263a34ea51d1f13ebc |
| 563 | - React-jsiexecutor: e9698dee4fd43ceb44832baf15d5745f455b0157 | 583 | + React-jsi: 54245e1d5f4b690dec614a73a3795964eeef13a8 |
| 564 | - React-jsinspector: f74a62727e5604119abd4a1eda52c0a12144bcd5 | 584 | + React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38 |
| 585 | + React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606 | ||
| 565 | react-native-camera: 1b52abea404d04e040edb3e74b7c5523c01a3089 | 586 | react-native-camera: 1b52abea404d04e040edb3e74b7c5523c01a3089 |
| 566 | react-native-code: 8e0e693b36c1d928a9d00f8e90feb443c3e8aa15 | 587 | react-native-code: 8e0e693b36c1d928a9d00f8e90feb443c3e8aa15 |
| 567 | react-native-fingerprint-scanner: 03f3d966edacf2f515e361595b6778d3502db4fb | 588 | react-native-fingerprint-scanner: 03f3d966edacf2f515e361595b6778d3502db4fb |
| 568 | react-native-netinfo: 4fa023c153d582aeae8435df95c9a975c5986449 | 589 | react-native-netinfo: 4fa023c153d582aeae8435df95c9a975c5986449 |
| 569 | react-native-safe-area-context: e200d4433aba6b7e60b52da5f37af11f7a0b0392 | 590 | react-native-safe-area-context: e200d4433aba6b7e60b52da5f37af11f7a0b0392 |
| 570 | react-native-webview: 0633fd7861a9bd7a80bacaee7da763c3afc248fa | 591 | react-native-webview: 0633fd7861a9bd7a80bacaee7da763c3afc248fa |
| 571 | - React-RCTActionSheet: af8f28dd82fec89b8fe29637b8c779829e016a88 | 592 | + React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5 |
| 572 | - React-RCTAnimation: 0d21fff7c20fb8ee41de5f2ebb63221127febd96 | 593 | + React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6 |
| 573 | - React-RCTBlob: 9496bd93130b22069bfbc5d35e98653dae7c35c6 | 594 | + React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13 |
| 574 | - React-RCTImage: a220d154ab3b92bc8a3d040651a21a047c5876b7 | 595 | + React-RCTImage: de355d738727b09ad3692f2a979affbd54b5f378 |
| 575 | - React-RCTLinking: 07b694640ae4a43e25c0e3e54713345f9ef1a706 | 596 | + React-RCTLinking: 8122f221d395a63364b2c0078ce284214bd04575 |
| 576 | - React-RCTNetwork: 043479410782020c2081498b5766db136aea6fe9 | 597 | + React-RCTNetwork: 8f96c7b49ea6a0f28f98258f347b6ad218bc0830 |
| 577 | - React-RCTSettings: 826bed85c8887cec143f561a27bb3044f28fbde4 | 598 | + React-RCTSettings: 8a49622aff9c1925f5455fa340b6fe4853d64ab6 |
| 578 | - React-RCTText: 239e040f401505001327a109f9188a4e6dad1bd2 | 599 | + React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8 |
| 579 | - React-RCTVibration: 072c3b427dd29e730c2ee5bfc509cf5054741a50 | 600 | + React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d |
| 580 | - ReactCommon: 3585806280c51d5c2c0d3aa5a99014c3badb629d | 601 | + ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce |
| 581 | ReactNativeART: 78edc68dd4a1e675338cd0cd113319cf3a65f2ab | 602 | ReactNativeART: 78edc68dd4a1e675338cd0cd113319cf3a65f2ab |
| 582 | ReactNativeDarkMode: 0178ffca3b10f6a7c9f49d6f9810232b328fa949 | 603 | ReactNativeDarkMode: 0178ffca3b10f6a7c9f49d6f9810232b328fa949 |
| 583 | RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 | 604 | RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268 |
| @@ -594,9 +615,9 @@ SPEC CHECKSUMS: | @@ -594,9 +615,9 @@ SPEC CHECKSUMS: | ||
| 594 | RNSVG: ce9d996113475209013317e48b05c21ee988d42e | 615 | RNSVG: ce9d996113475209013317e48b05c21ee988d42e |
| 595 | RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4 | 616 | RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4 |
| 596 | RSKImageCropper: a446db0e8444a036b34f3c43db01b2373baa4b2a | 617 | RSKImageCropper: a446db0e8444a036b34f3c43db01b2373baa4b2a |
| 597 | - Yoga: 50fb6eb13d2152e7363293ff603385db380815b1 | 618 | + Yoga: 7740b94929bbacbddda59bf115b5317e9a161598 |
| 598 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a | 619 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a |
| 599 | 620 | ||
| 600 | -PODFILE CHECKSUM: e597d8e8194d3baf3ffcf09c60685a36eaabf88f | 621 | +PODFILE CHECKSUM: 236259afa3c84df0903346d5aa41ca86a327994b |
| 601 | 622 | ||
| 602 | COCOAPODS: 1.9.1 | 623 | COCOAPODS: 1.9.1 |
| @@ -25,8 +25,8 @@ | @@ -25,8 +25,8 @@ | ||
| 25 | "@react-navigation/native": "^5.1.4", | 25 | "@react-navigation/native": "^5.1.4", |
| 26 | "@react-navigation/stack": "^5.2.9", | 26 | "@react-navigation/stack": "^5.2.9", |
| 27 | "immer": "^6.0.3", | 27 | "immer": "^6.0.3", |
| 28 | - "react": "16.11.0", | 28 | + "react": "16.13.1", |
| 29 | - "react-native": "0.62.1", | 29 | + "react-native": "0.63.2", |
| 30 | "react-native-camera": "^3.23.1", | 30 | "react-native-camera": "^3.23.1", |
| 31 | "react-native-dark-mode": "^0.2.2", | 31 | "react-native-dark-mode": "^0.2.2", |
| 32 | "react-native-device-info": "^5.5.4", | 32 | "react-native-device-info": "^5.5.4", |
| @@ -54,13 +54,13 @@ | @@ -54,13 +54,13 @@ | ||
| 54 | "url-parse": "^1.4.7" | 54 | "url-parse": "^1.4.7" |
| 55 | }, | 55 | }, |
| 56 | "devDependencies": { | 56 | "devDependencies": { |
| 57 | - "@babel/core": "^7.6.2", | 57 | + "@babel/core": "^7.8.4", |
| 58 | - "@babel/runtime": "^7.6.2", | 58 | + "@babel/runtime": "^7.8.4", |
| 59 | "@commitlint/cli": "^8.3.5", | 59 | "@commitlint/cli": "^8.3.5", |
| 60 | "@commitlint/config-conventional": "^8.3.4", | 60 | "@commitlint/config-conventional": "^8.3.4", |
| 61 | - "@react-native-community/eslint-config": "^1.0.0", | 61 | + "@react-native-community/eslint-config": "^1.1.0", |
| 62 | "@types/jest": "^24.0.24", | 62 | "@types/jest": "^24.0.24", |
| 63 | - "@types/react-native": "^0.62.0", | 63 | + "@types/react-native": "^0.63.4", |
| 64 | "@types/react-redux": "^7.1.7", | 64 | "@types/react-redux": "^7.1.7", |
| 65 | "@types/react-test-renderer": "16.9.2", | 65 | "@types/react-test-renderer": "16.9.2", |
| 66 | "@types/redux-logger": "^3.0.7", | 66 | "@types/redux-logger": "^3.0.7", |
| @@ -68,7 +68,7 @@ | @@ -68,7 +68,7 @@ | ||
| 68 | "@typescript-eslint/eslint-plugin": "^2.27.0", | 68 | "@typescript-eslint/eslint-plugin": "^2.27.0", |
| 69 | "@typescript-eslint/parser": "^2.27.0", | 69 | "@typescript-eslint/parser": "^2.27.0", |
| 70 | "@welldone-software/why-did-you-render": "^4.0.7", | 70 | "@welldone-software/why-did-you-render": "^4.0.7", |
| 71 | - "babel-jest": "^24.9.0", | 71 | + "babel-jest": "^25.1.0", |
| 72 | "commitizen": "^4.0.3", | 72 | "commitizen": "^4.0.3", |
| 73 | "cz-conventional-changelog": "^3.1.0", | 73 | "cz-conventional-changelog": "^3.1.0", |
| 74 | "eslint": "^6.8.0", | 74 | "eslint": "^6.8.0", |
| @@ -77,9 +77,9 @@ | @@ -77,9 +77,9 @@ | ||
| 77 | "husky": "^4.2.3", | 77 | "husky": "^4.2.3", |
| 78 | "jest": "^24.9.0", | 78 | "jest": "^24.9.0", |
| 79 | "lint-staged": "^10.1.2", | 79 | "lint-staged": "^10.1.2", |
| 80 | - "metro-react-native-babel-preset": "^0.58.0", | 80 | + "metro-react-native-babel-preset": "^0.59.0", |
| 81 | "prettier": "^2.0.4", | 81 | "prettier": "^2.0.4", |
| 82 | - "react-test-renderer": "16.11.0", | 82 | + "react-test-renderer": "16.13.1", |
| 83 | "standard-version": "^7.1.0", | 83 | "standard-version": "^7.1.0", |
| 84 | "typescript": "^3.8.3" | 84 | "typescript": "^3.8.3" |
| 85 | }, | 85 | }, |
| @@ -9,7 +9,14 @@ | @@ -9,7 +9,14 @@ | ||
| 9 | dependencies: | 9 | dependencies: |
| 10 | "@babel/highlight" "^7.8.3" | 10 | "@babel/highlight" "^7.8.3" |
| 11 | 11 | ||
| 12 | -"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.6.2": | 12 | +"@babel/code-frame@^7.10.4": |
| 13 | + version "7.10.4" | ||
| 14 | + resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.10.4.tgz?cache=0&sync_timestamp=1593522948158&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" | ||
| 15 | + integrity sha1-Fo2ho26Q2miujUnA8bSMfGJJITo= | ||
| 16 | + dependencies: | ||
| 17 | + "@babel/highlight" "^7.10.4" | ||
| 18 | + | ||
| 19 | +"@babel/core@^7.0.0", "@babel/core@^7.1.0": | ||
| 13 | version "7.9.0" | 20 | version "7.9.0" |
| 14 | resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.9.0.tgz?cache=0&sync_timestamp=1584720334651&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" | 21 | resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.9.0.tgz?cache=0&sync_timestamp=1584720334651&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" |
| 15 | integrity sha1-rJd7U4t34TL/cG87ik260JwDxW4= | 22 | integrity sha1-rJd7U4t34TL/cG87ik260JwDxW4= |
| @@ -31,6 +38,37 @@ | @@ -31,6 +38,37 @@ | ||
| 31 | semver "^5.4.1" | 38 | semver "^5.4.1" |
| 32 | source-map "^0.5.0" | 39 | source-map "^0.5.0" |
| 33 | 40 | ||
| 41 | +"@babel/core@^7.7.5", "@babel/core@^7.8.4": | ||
| 42 | + version "7.11.1" | ||
| 43 | + resolved "https://registry.npm.taobao.org/@babel/core/download/@babel/core-7.11.1.tgz?cache=0&sync_timestamp=1596578849394&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" | ||
| 44 | + integrity sha1-LFW2BOc6QNwhsOUmULEcZc8nZkM= | ||
| 45 | + dependencies: | ||
| 46 | + "@babel/code-frame" "^7.10.4" | ||
| 47 | + "@babel/generator" "^7.11.0" | ||
| 48 | + "@babel/helper-module-transforms" "^7.11.0" | ||
| 49 | + "@babel/helpers" "^7.10.4" | ||
| 50 | + "@babel/parser" "^7.11.1" | ||
| 51 | + "@babel/template" "^7.10.4" | ||
| 52 | + "@babel/traverse" "^7.11.0" | ||
| 53 | + "@babel/types" "^7.11.0" | ||
| 54 | + convert-source-map "^1.7.0" | ||
| 55 | + debug "^4.1.0" | ||
| 56 | + gensync "^1.0.0-beta.1" | ||
| 57 | + json5 "^2.1.2" | ||
| 58 | + lodash "^4.17.19" | ||
| 59 | + resolve "^1.3.2" | ||
| 60 | + semver "^5.4.1" | ||
| 61 | + source-map "^0.5.0" | ||
| 62 | + | ||
| 63 | +"@babel/generator@^7.11.0": | ||
| 64 | + version "7.11.0" | ||
| 65 | + resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.11.0.tgz?cache=0&sync_timestamp=1596144430330&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" | ||
| 66 | + integrity sha1-S5DHjYwSglAkVoy+g+5smvGTWFw= | ||
| 67 | + dependencies: | ||
| 68 | + "@babel/types" "^7.11.0" | ||
| 69 | + jsesc "^2.5.1" | ||
| 70 | + source-map "^0.5.0" | ||
| 71 | + | ||
| 34 | "@babel/generator@^7.4.0", "@babel/generator@^7.5.0", "@babel/generator@^7.9.0": | 72 | "@babel/generator@^7.4.0", "@babel/generator@^7.5.0", "@babel/generator@^7.9.0": |
| 35 | version "7.9.4" | 73 | version "7.9.4" |
| 36 | resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.9.4.tgz?cache=0&sync_timestamp=1585038762678&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.9.4.tgz#12441e90c3b3c4159cdecf312075bf1a8ce2dbce" | 74 | resolved "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.9.4.tgz?cache=0&sync_timestamp=1585038762678&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.9.4.tgz#12441e90c3b3c4159cdecf312075bf1a8ce2dbce" |
| @@ -111,6 +149,15 @@ | @@ -111,6 +149,15 @@ | ||
| 111 | "@babel/traverse" "^7.8.3" | 149 | "@babel/traverse" "^7.8.3" |
| 112 | "@babel/types" "^7.8.3" | 150 | "@babel/types" "^7.8.3" |
| 113 | 151 | ||
| 152 | +"@babel/helper-function-name@^7.10.4": | ||
| 153 | + version "7.10.4" | ||
| 154 | + resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.10.4.tgz?cache=0&sync_timestamp=1593522977138&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" | ||
| 155 | + integrity sha1-0tOyDFmtjEcRL6fSqUvAnV74Lxo= | ||
| 156 | + dependencies: | ||
| 157 | + "@babel/helper-get-function-arity" "^7.10.4" | ||
| 158 | + "@babel/template" "^7.10.4" | ||
| 159 | + "@babel/types" "^7.10.4" | ||
| 160 | + | ||
| 114 | "@babel/helper-function-name@^7.8.3": | 161 | "@babel/helper-function-name@^7.8.3": |
| 115 | version "7.8.3" | 162 | version "7.8.3" |
| 116 | resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" | 163 | resolved "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" |
| @@ -120,6 +167,13 @@ | @@ -120,6 +167,13 @@ | ||
| 120 | "@babel/template" "^7.8.3" | 167 | "@babel/template" "^7.8.3" |
| 121 | "@babel/types" "^7.8.3" | 168 | "@babel/types" "^7.8.3" |
| 122 | 169 | ||
| 170 | +"@babel/helper-get-function-arity@^7.10.4": | ||
| 171 | + version "7.10.4" | ||
| 172 | + resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.10.4.tgz?cache=0&sync_timestamp=1593521294451&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" | ||
| 173 | + integrity sha1-mMHL6g4jMvM/mkZhuM4VBbLBm6I= | ||
| 174 | + dependencies: | ||
| 175 | + "@babel/types" "^7.10.4" | ||
| 176 | + | ||
| 123 | "@babel/helper-get-function-arity@^7.8.3": | 177 | "@babel/helper-get-function-arity@^7.8.3": |
| 124 | version "7.8.3" | 178 | version "7.8.3" |
| 125 | resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" | 179 | resolved "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.8.3.tgz?cache=0&sync_timestamp=1578951938166&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" |
| @@ -127,6 +181,13 @@ | @@ -127,6 +181,13 @@ | ||
| 127 | dependencies: | 181 | dependencies: |
| 128 | "@babel/types" "^7.8.3" | 182 | "@babel/types" "^7.8.3" |
| 129 | 183 | ||
| 184 | +"@babel/helper-member-expression-to-functions@^7.10.4": | ||
| 185 | + version "7.11.0" | ||
| 186 | + resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.11.0.tgz?cache=0&sync_timestamp=1596144430473&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" | ||
| 187 | + integrity sha1-rmnIPYTugvS0L5bioJQQk1qPJt8= | ||
| 188 | + dependencies: | ||
| 189 | + "@babel/types" "^7.11.0" | ||
| 190 | + | ||
| 130 | "@babel/helper-member-expression-to-functions@^7.8.3": | 191 | "@babel/helper-member-expression-to-functions@^7.8.3": |
| 131 | version "7.8.3" | 192 | version "7.8.3" |
| 132 | resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.8.3.tgz?cache=0&sync_timestamp=1578951939517&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" | 193 | resolved "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.8.3.tgz?cache=0&sync_timestamp=1578951939517&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" |
| @@ -134,6 +195,13 @@ | @@ -134,6 +195,13 @@ | ||
| 134 | dependencies: | 195 | dependencies: |
| 135 | "@babel/types" "^7.8.3" | 196 | "@babel/types" "^7.8.3" |
| 136 | 197 | ||
| 198 | +"@babel/helper-module-imports@^7.10.4": | ||
| 199 | + version "7.10.4" | ||
| 200 | + resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.10.4.tgz?cache=0&sync_timestamp=1593522965782&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" | ||
| 201 | + integrity sha1-TFxUvgS9MWcKc4J5fXW5+i5bViA= | ||
| 202 | + dependencies: | ||
| 203 | + "@babel/types" "^7.10.4" | ||
| 204 | + | ||
| 137 | "@babel/helper-module-imports@^7.8.3": | 205 | "@babel/helper-module-imports@^7.8.3": |
| 138 | version "7.8.3" | 206 | version "7.8.3" |
| 139 | resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" | 207 | resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" |
| @@ -141,6 +209,19 @@ | @@ -141,6 +209,19 @@ | ||
| 141 | dependencies: | 209 | dependencies: |
| 142 | "@babel/types" "^7.8.3" | 210 | "@babel/types" "^7.8.3" |
| 143 | 211 | ||
| 212 | +"@babel/helper-module-transforms@^7.11.0": | ||
| 213 | + version "7.11.0" | ||
| 214 | + resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" | ||
| 215 | + integrity sha1-sW8lAinkchGr3YSzS2RzfCqy01k= | ||
| 216 | + dependencies: | ||
| 217 | + "@babel/helper-module-imports" "^7.10.4" | ||
| 218 | + "@babel/helper-replace-supers" "^7.10.4" | ||
| 219 | + "@babel/helper-simple-access" "^7.10.4" | ||
| 220 | + "@babel/helper-split-export-declaration" "^7.11.0" | ||
| 221 | + "@babel/template" "^7.10.4" | ||
| 222 | + "@babel/types" "^7.11.0" | ||
| 223 | + lodash "^4.17.19" | ||
| 224 | + | ||
| 144 | "@babel/helper-module-transforms@^7.9.0": | 225 | "@babel/helper-module-transforms@^7.9.0": |
| 145 | version "7.9.0" | 226 | version "7.9.0" |
| 146 | resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.9.0.tgz?cache=0&sync_timestamp=1584718808099&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" | 227 | resolved "https://registry.npm.taobao.org/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.9.0.tgz?cache=0&sync_timestamp=1584718808099&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" |
| @@ -154,6 +235,13 @@ | @@ -154,6 +235,13 @@ | ||
| 154 | "@babel/types" "^7.9.0" | 235 | "@babel/types" "^7.9.0" |
| 155 | lodash "^4.17.13" | 236 | lodash "^4.17.13" |
| 156 | 237 | ||
| 238 | +"@babel/helper-optimise-call-expression@^7.10.4": | ||
| 239 | + version "7.10.4" | ||
| 240 | + resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.10.4.tgz?cache=0&sync_timestamp=1593521296446&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" | ||
| 241 | + integrity sha1-UNyWQT1ZT5lad5BZBbBYk813lnM= | ||
| 242 | + dependencies: | ||
| 243 | + "@babel/types" "^7.10.4" | ||
| 244 | + | ||
| 157 | "@babel/helper-optimise-call-expression@^7.8.3": | 245 | "@babel/helper-optimise-call-expression@^7.8.3": |
| 158 | version "7.8.3" | 246 | version "7.8.3" |
| 159 | resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.8.3.tgz?cache=0&sync_timestamp=1578951937431&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" | 247 | resolved "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.8.3.tgz?cache=0&sync_timestamp=1578951937431&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" |
| @@ -166,6 +254,11 @@ | @@ -166,6 +254,11 @@ | ||
| 166 | resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" | 254 | resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" |
| 167 | integrity sha1-nqKTvhm6vA9S/4yoizTDYRsghnA= | 255 | integrity sha1-nqKTvhm6vA9S/4yoizTDYRsghnA= |
| 168 | 256 | ||
| 257 | +"@babel/helper-plugin-utils@^7.10.4": | ||
| 258 | + version "7.10.4" | ||
| 259 | + resolved "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.10.4.tgz?cache=0&sync_timestamp=1593521082372&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" | ||
| 260 | + integrity sha1-L3WoMSadT2d95JmG3/WZJ1M883U= | ||
| 261 | + | ||
| 169 | "@babel/helper-regex@^7.8.3": | 262 | "@babel/helper-regex@^7.8.3": |
| 170 | version "7.8.3" | 263 | version "7.8.3" |
| 171 | resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.8.3.tgz?cache=0&sync_timestamp=1578951938163&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" | 264 | resolved "https://registry.npm.taobao.org/@babel/helper-regex/download/@babel/helper-regex-7.8.3.tgz?cache=0&sync_timestamp=1578951938163&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-regex%2Fdownload%2F%40babel%2Fhelper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" |
| @@ -184,6 +277,16 @@ | @@ -184,6 +277,16 @@ | ||
| 184 | "@babel/traverse" "^7.8.3" | 277 | "@babel/traverse" "^7.8.3" |
| 185 | "@babel/types" "^7.8.3" | 278 | "@babel/types" "^7.8.3" |
| 186 | 279 | ||
| 280 | +"@babel/helper-replace-supers@^7.10.4": | ||
| 281 | + version "7.10.4" | ||
| 282 | + resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.10.4.tgz?cache=0&sync_timestamp=1593522959591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" | ||
| 283 | + integrity sha1-1YXNk4jqBuYDHkzUS2cTy+rZ5s8= | ||
| 284 | + dependencies: | ||
| 285 | + "@babel/helper-member-expression-to-functions" "^7.10.4" | ||
| 286 | + "@babel/helper-optimise-call-expression" "^7.10.4" | ||
| 287 | + "@babel/traverse" "^7.10.4" | ||
| 288 | + "@babel/types" "^7.10.4" | ||
| 289 | + | ||
| 187 | "@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": | 290 | "@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": |
| 188 | version "7.8.6" | 291 | version "7.8.6" |
| 189 | resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.8.6.tgz?cache=0&sync_timestamp=1582806192406&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" | 292 | resolved "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.8.6.tgz?cache=0&sync_timestamp=1582806192406&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" |
| @@ -194,6 +297,14 @@ | @@ -194,6 +297,14 @@ | ||
| 194 | "@babel/traverse" "^7.8.6" | 297 | "@babel/traverse" "^7.8.6" |
| 195 | "@babel/types" "^7.8.6" | 298 | "@babel/types" "^7.8.6" |
| 196 | 299 | ||
| 300 | +"@babel/helper-simple-access@^7.10.4": | ||
| 301 | + version "7.10.4" | ||
| 302 | + resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.10.4.tgz?cache=0&sync_timestamp=1593522975802&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" | ||
| 303 | + integrity sha1-D1zNopRSd6KnotOoIeFTle3PNGE= | ||
| 304 | + dependencies: | ||
| 305 | + "@babel/template" "^7.10.4" | ||
| 306 | + "@babel/types" "^7.10.4" | ||
| 307 | + | ||
| 197 | "@babel/helper-simple-access@^7.8.3": | 308 | "@babel/helper-simple-access@^7.8.3": |
| 198 | version "7.8.3" | 309 | version "7.8.3" |
| 199 | resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" | 310 | resolved "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" |
| @@ -202,6 +313,13 @@ | @@ -202,6 +313,13 @@ | ||
| 202 | "@babel/template" "^7.8.3" | 313 | "@babel/template" "^7.8.3" |
| 203 | "@babel/types" "^7.8.3" | 314 | "@babel/types" "^7.8.3" |
| 204 | 315 | ||
| 316 | +"@babel/helper-split-export-declaration@^7.11.0": | ||
| 317 | + version "7.11.0" | ||
| 318 | + resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" | ||
| 319 | + integrity sha1-+KSRJErPamdhWKxCBykRuoOtCZ8= | ||
| 320 | + dependencies: | ||
| 321 | + "@babel/types" "^7.11.0" | ||
| 322 | + | ||
| 205 | "@babel/helper-split-export-declaration@^7.8.3": | 323 | "@babel/helper-split-export-declaration@^7.8.3": |
| 206 | version "7.8.3" | 324 | version "7.8.3" |
| 207 | resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" | 325 | resolved "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" |
| @@ -209,6 +327,11 @@ | @@ -209,6 +327,11 @@ | ||
| 209 | dependencies: | 327 | dependencies: |
| 210 | "@babel/types" "^7.8.3" | 328 | "@babel/types" "^7.8.3" |
| 211 | 329 | ||
| 330 | +"@babel/helper-validator-identifier@^7.10.4": | ||
| 331 | + version "7.10.4" | ||
| 332 | + resolved "https://registry.npm.taobao.org/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.10.4.tgz?cache=0&sync_timestamp=1593521083613&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" | ||
| 333 | + integrity sha1-p4x6clHgH2FlEtMbEK3PUq2l4NI= | ||
| 334 | + | ||
| 212 | "@babel/helper-validator-identifier@^7.9.0": | 335 | "@babel/helper-validator-identifier@^7.9.0": |
| 213 | version "7.9.0" | 336 | version "7.9.0" |
| 214 | resolved "https://registry.npm.taobao.org/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed" | 337 | resolved "https://registry.npm.taobao.org/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed" |
| @@ -224,6 +347,15 @@ | @@ -224,6 +347,15 @@ | ||
| 224 | "@babel/traverse" "^7.8.3" | 347 | "@babel/traverse" "^7.8.3" |
| 225 | "@babel/types" "^7.8.3" | 348 | "@babel/types" "^7.8.3" |
| 226 | 349 | ||
| 350 | +"@babel/helpers@^7.10.4": | ||
| 351 | + version "7.10.4" | ||
| 352 | + resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.10.4.tgz?cache=0&sync_timestamp=1593522959913&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" | ||
| 353 | + integrity sha1-Kr6w1yGv98Cpc3a54fb2XXpHUEQ= | ||
| 354 | + dependencies: | ||
| 355 | + "@babel/template" "^7.10.4" | ||
| 356 | + "@babel/traverse" "^7.10.4" | ||
| 357 | + "@babel/types" "^7.10.4" | ||
| 358 | + | ||
| 227 | "@babel/helpers@^7.9.0": | 359 | "@babel/helpers@^7.9.0": |
| 228 | version "7.9.2" | 360 | version "7.9.2" |
| 229 | resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" | 361 | resolved "https://registry.npm.taobao.org/@babel/helpers/download/@babel/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" |
| @@ -233,6 +365,15 @@ | @@ -233,6 +365,15 @@ | ||
| 233 | "@babel/traverse" "^7.9.0" | 365 | "@babel/traverse" "^7.9.0" |
| 234 | "@babel/types" "^7.9.0" | 366 | "@babel/types" "^7.9.0" |
| 235 | 367 | ||
| 368 | +"@babel/highlight@^7.10.4": | ||
| 369 | + version "7.10.4" | ||
| 370 | + resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.10.4.tgz?cache=0&sync_timestamp=1593521095576&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" | ||
| 371 | + integrity sha1-fRvf1ldTU4+r5sOFls23bZrGAUM= | ||
| 372 | + dependencies: | ||
| 373 | + "@babel/helper-validator-identifier" "^7.10.4" | ||
| 374 | + chalk "^2.0.0" | ||
| 375 | + js-tokens "^4.0.0" | ||
| 376 | + | ||
| 236 | "@babel/highlight@^7.8.3": | 377 | "@babel/highlight@^7.8.3": |
| 237 | version "7.9.0" | 378 | version "7.9.0" |
| 238 | resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" | 379 | resolved "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" |
| @@ -247,6 +388,11 @@ | @@ -247,6 +388,11 @@ | ||
| 247 | resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.9.4.tgz?cache=0&sync_timestamp=1585038714563&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" | 388 | resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.9.4.tgz?cache=0&sync_timestamp=1585038714563&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" |
| 248 | integrity sha1-aKNeawMZu8AURlvkOCgwARPy8ug= | 389 | integrity sha1-aKNeawMZu8AURlvkOCgwARPy8ug= |
| 249 | 390 | ||
| 391 | +"@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1": | ||
| 392 | + version "7.11.2" | ||
| 393 | + resolved "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.11.2.tgz?cache=0&sync_timestamp=1596637783365&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.11.2.tgz#0882ab8a455df3065ea2dcb4c753b2460a24bead" | ||
| 394 | + integrity sha1-CIKrikVd8wZeoty0x1OyRgokvq0= | ||
| 395 | + | ||
| 250 | "@babel/plugin-external-helpers@^7.0.0": | 396 | "@babel/plugin-external-helpers@^7.0.0": |
| 251 | version "7.8.3" | 397 | version "7.8.3" |
| 252 | resolved "https://registry.npm.taobao.org/@babel/plugin-external-helpers/download/@babel/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" | 398 | resolved "https://registry.npm.taobao.org/@babel/plugin-external-helpers/download/@babel/plugin-external-helpers-7.8.3.tgz#5a94164d9af393b2820a3cdc407e28ebf237de4b" |
| @@ -302,6 +448,20 @@ | @@ -302,6 +448,20 @@ | ||
| 302 | "@babel/helper-plugin-utils" "^7.8.3" | 448 | "@babel/helper-plugin-utils" "^7.8.3" |
| 303 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" | 449 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" |
| 304 | 450 | ||
| 451 | +"@babel/plugin-syntax-async-generators@^7.8.4": | ||
| 452 | + version "7.8.4" | ||
| 453 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" | ||
| 454 | + integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0= | ||
| 455 | + dependencies: | ||
| 456 | + "@babel/helper-plugin-utils" "^7.8.0" | ||
| 457 | + | ||
| 458 | +"@babel/plugin-syntax-bigint@^7.8.3": | ||
| 459 | + version "7.8.3" | ||
| 460 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" | ||
| 461 | + integrity sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo= | ||
| 462 | + dependencies: | ||
| 463 | + "@babel/helper-plugin-utils" "^7.8.0" | ||
| 464 | + | ||
| 305 | "@babel/plugin-syntax-class-properties@^7.0.0": | 465 | "@babel/plugin-syntax-class-properties@^7.0.0": |
| 306 | version "7.8.3" | 466 | version "7.8.3" |
| 307 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" | 467 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" |
| @@ -309,6 +469,13 @@ | @@ -309,6 +469,13 @@ | ||
| 309 | dependencies: | 469 | dependencies: |
| 310 | "@babel/helper-plugin-utils" "^7.8.3" | 470 | "@babel/helper-plugin-utils" "^7.8.3" |
| 311 | 471 | ||
| 472 | +"@babel/plugin-syntax-class-properties@^7.8.3": | ||
| 473 | + version "7.10.4" | ||
| 474 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.10.4.tgz?cache=0&sync_timestamp=1593521086484&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-class-properties%2Fdownload%2F%40babel%2Fplugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" | ||
| 475 | + integrity sha1-ZkTmoLqlWmH54yMfbJ7rbuRsEkw= | ||
| 476 | + dependencies: | ||
| 477 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 478 | + | ||
| 312 | "@babel/plugin-syntax-dynamic-import@^7.0.0": | 479 | "@babel/plugin-syntax-dynamic-import@^7.0.0": |
| 313 | version "7.8.3" | 480 | version "7.8.3" |
| 314 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" | 481 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" |
| @@ -330,6 +497,20 @@ | @@ -330,6 +497,20 @@ | ||
| 330 | dependencies: | 497 | dependencies: |
| 331 | "@babel/helper-plugin-utils" "^7.8.3" | 498 | "@babel/helper-plugin-utils" "^7.8.3" |
| 332 | 499 | ||
| 500 | +"@babel/plugin-syntax-import-meta@^7.8.3": | ||
| 501 | + version "7.10.4" | ||
| 502 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz?cache=0&sync_timestamp=1593523664516&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-import-meta%2Fdownload%2F%40babel%2Fplugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" | ||
| 503 | + integrity sha1-7mATSMNw+jNNIge+FYd3SWUh/VE= | ||
| 504 | + dependencies: | ||
| 505 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 506 | + | ||
| 507 | +"@babel/plugin-syntax-json-strings@^7.8.3": | ||
| 508 | + version "7.8.3" | ||
| 509 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" | ||
| 510 | + integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo= | ||
| 511 | + dependencies: | ||
| 512 | + "@babel/helper-plugin-utils" "^7.8.0" | ||
| 513 | + | ||
| 333 | "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3": | 514 | "@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.8.3": |
| 334 | version "7.8.3" | 515 | version "7.8.3" |
| 335 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.8.3.tgz?cache=0&sync_timestamp=1578953929606&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" | 516 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.8.3.tgz?cache=0&sync_timestamp=1578953929606&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" |
| @@ -337,28 +518,49 @@ | @@ -337,28 +518,49 @@ | ||
| 337 | dependencies: | 518 | dependencies: |
| 338 | "@babel/helper-plugin-utils" "^7.8.3" | 519 | "@babel/helper-plugin-utils" "^7.8.3" |
| 339 | 520 | ||
| 340 | -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": | 521 | +"@babel/plugin-syntax-jsx@^7.10.4": |
| 522 | + version "7.10.4" | ||
| 523 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" | ||
| 524 | + integrity sha1-Oauq48v3EMQ3PYQpSE5rohNAFmw= | ||
| 525 | + dependencies: | ||
| 526 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 527 | + | ||
| 528 | +"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": | ||
| 529 | + version "7.10.4" | ||
| 530 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" | ||
| 531 | + integrity sha1-ypHvRjA1MESLkGZSusLp/plB9pk= | ||
| 532 | + dependencies: | ||
| 533 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 534 | + | ||
| 535 | +"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": | ||
| 341 | version "7.8.3" | 536 | version "7.8.3" |
| 342 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" | 537 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" |
| 343 | integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak= | 538 | integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak= |
| 344 | dependencies: | 539 | dependencies: |
| 345 | "@babel/helper-plugin-utils" "^7.8.0" | 540 | "@babel/helper-plugin-utils" "^7.8.0" |
| 346 | 541 | ||
| 347 | -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0": | 542 | +"@babel/plugin-syntax-numeric-separator@^7.8.3": |
| 543 | + version "7.10.4" | ||
| 544 | + resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz?cache=0&sync_timestamp=1593521788128&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-numeric-separator%2Fdownload%2F%40babel%2Fplugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" | ||
| 545 | + integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c= | ||
| 546 | + dependencies: | ||
| 547 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 548 | + | ||
| 549 | +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": | ||
| 348 | version "7.8.3" | 550 | version "7.8.3" |
| 349 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" | 551 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" |
| 350 | integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE= | 552 | integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE= |
| 351 | dependencies: | 553 | dependencies: |
| 352 | "@babel/helper-plugin-utils" "^7.8.0" | 554 | "@babel/helper-plugin-utils" "^7.8.0" |
| 353 | 555 | ||
| 354 | -"@babel/plugin-syntax-optional-catch-binding@^7.8.0": | 556 | +"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": |
| 355 | version "7.8.3" | 557 | version "7.8.3" |
| 356 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" | 558 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" |
| 357 | integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE= | 559 | integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE= |
| 358 | dependencies: | 560 | dependencies: |
| 359 | "@babel/helper-plugin-utils" "^7.8.0" | 561 | "@babel/helper-plugin-utils" "^7.8.0" |
| 360 | 562 | ||
| 361 | -"@babel/plugin-syntax-optional-chaining@^7.8.0": | 563 | +"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": |
| 362 | version "7.8.3" | 564 | version "7.8.3" |
| 363 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" | 565 | resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" |
| 364 | integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io= | 566 | integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io= |
| @@ -523,6 +725,14 @@ | @@ -523,6 +725,14 @@ | ||
| 523 | dependencies: | 725 | dependencies: |
| 524 | "@babel/helper-plugin-utils" "^7.8.3" | 726 | "@babel/helper-plugin-utils" "^7.8.3" |
| 525 | 727 | ||
| 728 | +"@babel/plugin-transform-react-jsx-self@^7.0.0": | ||
| 729 | + version "7.10.4" | ||
| 730 | + resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx-self/download/@babel/plugin-transform-react-jsx-self-7.10.4.tgz?cache=0&sync_timestamp=1593521448504&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-transform-react-jsx-self%2Fdownload%2F%40babel%2Fplugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369" | ||
| 731 | + integrity sha1-zTAaX+2JiMGC7QudVem9bbC9k2k= | ||
| 732 | + dependencies: | ||
| 733 | + "@babel/helper-plugin-utils" "^7.10.4" | ||
| 734 | + "@babel/plugin-syntax-jsx" "^7.10.4" | ||
| 735 | + | ||
| 526 | "@babel/plugin-transform-react-jsx-source@^7.0.0": | 736 | "@babel/plugin-transform-react-jsx-source@^7.0.0": |
| 527 | version "7.9.0" | 737 | version "7.9.0" |
| 528 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx-source/download/@babel/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" | 738 | resolved "https://registry.npm.taobao.org/@babel/plugin-transform-react-jsx-source/download/@babel/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" |
| @@ -624,7 +834,7 @@ | @@ -624,7 +834,7 @@ | ||
| 624 | core-js-pure "^3.0.0" | 834 | core-js-pure "^3.0.0" |
| 625 | regenerator-runtime "^0.13.4" | 835 | regenerator-runtime "^0.13.4" |
| 626 | 836 | ||
| 627 | -"@babel/runtime@^7.0.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": | 837 | +"@babel/runtime@^7.0.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": |
| 628 | version "7.9.2" | 838 | version "7.9.2" |
| 629 | resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" | 839 | resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" |
| 630 | integrity sha1-2Q3wWDo6JS8JqqYZZlNnuuUY2wY= | 840 | integrity sha1-2Q3wWDo6JS8JqqYZZlNnuuUY2wY= |
| @@ -640,6 +850,15 @@ | @@ -640,6 +850,15 @@ | ||
| 640 | "@babel/parser" "^7.8.6" | 850 | "@babel/parser" "^7.8.6" |
| 641 | "@babel/types" "^7.8.6" | 851 | "@babel/types" "^7.8.6" |
| 642 | 852 | ||
| 853 | +"@babel/template@^7.10.4", "@babel/template@^7.3.3": | ||
| 854 | + version "7.10.4" | ||
| 855 | + resolved "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" | ||
| 856 | + integrity sha1-MlGZbEIA68cdGo/EBfupQPNrong= | ||
| 857 | + dependencies: | ||
| 858 | + "@babel/code-frame" "^7.10.4" | ||
| 859 | + "@babel/parser" "^7.10.4" | ||
| 860 | + "@babel/types" "^7.10.4" | ||
| 861 | + | ||
| 643 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.0", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": | 862 | "@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.0", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": |
| 644 | version "7.9.0" | 863 | version "7.9.0" |
| 645 | resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.9.0.tgz?cache=0&sync_timestamp=1584720333049&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892" | 864 | resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.9.0.tgz?cache=0&sync_timestamp=1584720333049&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892" |
| @@ -655,6 +874,21 @@ | @@ -655,6 +874,21 @@ | ||
| 655 | globals "^11.1.0" | 874 | globals "^11.1.0" |
| 656 | lodash "^4.17.13" | 875 | lodash "^4.17.13" |
| 657 | 876 | ||
| 877 | +"@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0": | ||
| 878 | + version "7.11.0" | ||
| 879 | + resolved "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" | ||
| 880 | + integrity sha1-m5ls4bmPU/fD5BdRFWBdVu0H3SQ= | ||
| 881 | + dependencies: | ||
| 882 | + "@babel/code-frame" "^7.10.4" | ||
| 883 | + "@babel/generator" "^7.11.0" | ||
| 884 | + "@babel/helper-function-name" "^7.10.4" | ||
| 885 | + "@babel/helper-split-export-declaration" "^7.11.0" | ||
| 886 | + "@babel/parser" "^7.11.0" | ||
| 887 | + "@babel/types" "^7.11.0" | ||
| 888 | + debug "^4.1.0" | ||
| 889 | + globals "^11.1.0" | ||
| 890 | + lodash "^4.17.19" | ||
| 891 | + | ||
| 658 | "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0": | 892 | "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0": |
| 659 | version "7.9.0" | 893 | version "7.9.0" |
| 660 | resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5" | 894 | resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5" |
| @@ -664,6 +898,15 @@ | @@ -664,6 +898,15 @@ | ||
| 664 | lodash "^4.17.13" | 898 | lodash "^4.17.13" |
| 665 | to-fast-properties "^2.0.0" | 899 | to-fast-properties "^2.0.0" |
| 666 | 900 | ||
| 901 | +"@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.3.3": | ||
| 902 | + version "7.11.0" | ||
| 903 | + resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" | ||
| 904 | + integrity sha1-Kua/G6mujDxDgk5YYSaYcbIG6Q0= | ||
| 905 | + dependencies: | ||
| 906 | + "@babel/helper-validator-identifier" "^7.10.4" | ||
| 907 | + lodash "^4.17.19" | ||
| 908 | + to-fast-properties "^2.0.0" | ||
| 909 | + | ||
| 667 | "@cnakazawa/watch@^1.0.3": | 910 | "@cnakazawa/watch@^1.0.3": |
| 668 | version "1.0.4" | 911 | version "1.0.4" |
| 669 | resolved "https://registry.npm.taobao.org/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" | 912 | resolved "https://registry.npm.taobao.org/@cnakazawa/watch/download/@cnakazawa/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" |
| @@ -870,6 +1113,22 @@ | @@ -870,6 +1113,22 @@ | ||
| 870 | fast-deep-equal "^3.1.1" | 1113 | fast-deep-equal "^3.1.1" |
| 871 | shallowequal "^1.1.0" | 1114 | shallowequal "^1.1.0" |
| 872 | 1115 | ||
| 1116 | +"@istanbuljs/load-nyc-config@^1.0.0": | ||
| 1117 | + version "1.1.0" | ||
| 1118 | + resolved "https://registry.npm.taobao.org/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" | ||
| 1119 | + integrity sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0= | ||
| 1120 | + dependencies: | ||
| 1121 | + camelcase "^5.3.1" | ||
| 1122 | + find-up "^4.1.0" | ||
| 1123 | + get-package-type "^0.1.0" | ||
| 1124 | + js-yaml "^3.13.1" | ||
| 1125 | + resolve-from "^5.0.0" | ||
| 1126 | + | ||
| 1127 | +"@istanbuljs/schema@^0.1.2": | ||
| 1128 | + version "0.1.2" | ||
| 1129 | + resolved "https://registry.npm.taobao.org/@istanbuljs/schema/download/@istanbuljs/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" | ||
| 1130 | + integrity sha1-JlIL8Jq+SlZEzVQU43ElqJVCQd0= | ||
| 1131 | + | ||
| 873 | "@jest/console@^24.7.1", "@jest/console@^24.9.0": | 1132 | "@jest/console@^24.7.1", "@jest/console@^24.9.0": |
| 874 | version "24.9.0" | 1133 | version "24.9.0" |
| 875 | resolved "https://registry.npm.taobao.org/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1585823724080&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" | 1134 | resolved "https://registry.npm.taobao.org/@jest/console/download/@jest/console-24.9.0.tgz?cache=0&sync_timestamp=1585823724080&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" |
| @@ -1009,6 +1268,28 @@ | @@ -1009,6 +1268,28 @@ | ||
| 1009 | source-map "^0.6.1" | 1268 | source-map "^0.6.1" |
| 1010 | write-file-atomic "2.4.1" | 1269 | write-file-atomic "2.4.1" |
| 1011 | 1270 | ||
| 1271 | +"@jest/transform@^25.5.1": | ||
| 1272 | + version "25.5.1" | ||
| 1273 | + resolved "https://registry.npm.taobao.org/@jest/transform/download/@jest/transform-25.5.1.tgz?cache=0&sync_timestamp=1596191436531&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Ftransform%2Fdownload%2F%40jest%2Ftransform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3" | ||
| 1274 | + integrity sha1-BGndwXaZ3Sv5hdtV+g+5MJ9cLbM= | ||
| 1275 | + dependencies: | ||
| 1276 | + "@babel/core" "^7.1.0" | ||
| 1277 | + "@jest/types" "^25.5.0" | ||
| 1278 | + babel-plugin-istanbul "^6.0.0" | ||
| 1279 | + chalk "^3.0.0" | ||
| 1280 | + convert-source-map "^1.4.0" | ||
| 1281 | + fast-json-stable-stringify "^2.0.0" | ||
| 1282 | + graceful-fs "^4.2.4" | ||
| 1283 | + jest-haste-map "^25.5.1" | ||
| 1284 | + jest-regex-util "^25.2.6" | ||
| 1285 | + jest-util "^25.5.0" | ||
| 1286 | + micromatch "^4.0.2" | ||
| 1287 | + pirates "^4.0.1" | ||
| 1288 | + realpath-native "^2.0.0" | ||
| 1289 | + slash "^3.0.0" | ||
| 1290 | + source-map "^0.6.1" | ||
| 1291 | + write-file-atomic "^3.0.0" | ||
| 1292 | + | ||
| 1012 | "@jest/types@^24.9.0": | 1293 | "@jest/types@^24.9.0": |
| 1013 | version "24.9.0" | 1294 | version "24.9.0" |
| 1014 | resolved "https://registry.npm.taobao.org/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1585823717437&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" | 1295 | resolved "https://registry.npm.taobao.org/@jest/types/download/@jest/types-24.9.0.tgz?cache=0&sync_timestamp=1585823717437&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" |
| @@ -1028,6 +1309,16 @@ | @@ -1028,6 +1309,16 @@ | ||
| 1028 | "@types/yargs" "^15.0.0" | 1309 | "@types/yargs" "^15.0.0" |
| 1029 | chalk "^3.0.0" | 1310 | chalk "^3.0.0" |
| 1030 | 1311 | ||
| 1312 | +"@jest/types@^25.5.0": | ||
| 1313 | + version "25.5.0" | ||
| 1314 | + resolved "https://registry.npm.taobao.org/@jest/types/download/@jest/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" | ||
| 1315 | + integrity sha1-TWpHk/e5WZ/DaAh3uFapfbzPKp0= | ||
| 1316 | + dependencies: | ||
| 1317 | + "@types/istanbul-lib-coverage" "^2.0.0" | ||
| 1318 | + "@types/istanbul-reports" "^1.1.1" | ||
| 1319 | + "@types/yargs" "^15.0.0" | ||
| 1320 | + chalk "^3.0.0" | ||
| 1321 | + | ||
| 1031 | "@marionebl/sander@^0.6.0": | 1322 | "@marionebl/sander@^0.6.0": |
| 1032 | version "0.6.1" | 1323 | version "0.6.1" |
| 1033 | resolved "https://registry.npm.taobao.org/@marionebl/sander/download/@marionebl/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b" | 1324 | resolved "https://registry.npm.taobao.org/@marionebl/sander/download/@marionebl/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b" |
| @@ -1061,35 +1352,35 @@ | @@ -1061,35 +1352,35 @@ | ||
| 1061 | dependencies: | 1352 | dependencies: |
| 1062 | deep-assign "^3.0.0" | 1353 | deep-assign "^3.0.0" |
| 1063 | 1354 | ||
| 1064 | -"@react-native-community/cli-debugger-ui@^4.2.1": | 1355 | +"@react-native-community/cli-debugger-ui@^4.9.0": |
| 1065 | - version "4.2.1" | 1356 | + version "4.9.0" |
| 1066 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli-debugger-ui/download/@react-native-community/cli-debugger-ui-4.2.1.tgz?cache=0&sync_timestamp=1582652910092&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli-debugger-ui%2Fdownload%2F%40react-native-community%2Fcli-debugger-ui-4.2.1.tgz#da22aa1cf8d04fe1aa2759873916473e81c4450b" | 1357 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-debugger-ui/download/@react-native-community/cli-debugger-ui-4.9.0.tgz#4177764ba69243c97aa26829d59d9501acb2bd71" |
| 1067 | - integrity sha1-2iKqHPjQT+GqJ1mHORZHPoHERQs= | 1358 | + integrity sha1-QXd2S6aSQ8l6omgp1Z2VAayyvXE= |
| 1068 | dependencies: | 1359 | dependencies: |
| 1069 | serve-static "^1.13.1" | 1360 | serve-static "^1.13.1" |
| 1070 | 1361 | ||
| 1071 | -"@react-native-community/cli-platform-android@^4.5.1": | 1362 | +"@react-native-community/cli-platform-android@^4.7.0": |
| 1072 | - version "4.6.0" | 1363 | + version "4.10.1" |
| 1073 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli-platform-android/download/@react-native-community/cli-platform-android-4.6.0.tgz?cache=0&sync_timestamp=1586180558392&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli-platform-android%2Fdownload%2F%40react-native-community%2Fcli-platform-android-4.6.0.tgz#74ad0b2e29ab2a3ced58e07d2c2a99b9577046e2" | 1364 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-platform-android/download/@react-native-community/cli-platform-android-4.10.1.tgz#c326dfcce42acf106cc9c4afb95b360644fa595b" |
| 1074 | - integrity sha1-dK0LLimrKjztWOB9LCqZuVdwRuI= | 1365 | + integrity sha1-wybfzOQqzxBsycSvuVs2BkT6WVs= |
| 1075 | dependencies: | 1366 | dependencies: |
| 1076 | - "@react-native-community/cli-tools" "^4.6.0" | 1367 | + "@react-native-community/cli-tools" "^4.10.1" |
| 1077 | chalk "^3.0.0" | 1368 | chalk "^3.0.0" |
| 1078 | execa "^1.0.0" | 1369 | execa "^1.0.0" |
| 1079 | fs-extra "^8.1.0" | 1370 | fs-extra "^8.1.0" |
| 1080 | glob "^7.1.3" | 1371 | glob "^7.1.3" |
| 1081 | jetifier "^1.6.2" | 1372 | jetifier "^1.6.2" |
| 1082 | lodash "^4.17.15" | 1373 | lodash "^4.17.15" |
| 1083 | - logkitty "^0.6.0" | 1374 | + logkitty "^0.7.1" |
| 1084 | slash "^3.0.0" | 1375 | slash "^3.0.0" |
| 1085 | xmldoc "^1.1.2" | 1376 | xmldoc "^1.1.2" |
| 1086 | 1377 | ||
| 1087 | -"@react-native-community/cli-platform-ios@^4.5.0": | 1378 | +"@react-native-community/cli-platform-ios@^4.7.0": |
| 1088 | - version "4.6.0" | 1379 | + version "4.10.1" |
| 1089 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli-platform-ios/download/@react-native-community/cli-platform-ios-4.6.0.tgz?cache=0&sync_timestamp=1586180558608&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli-platform-ios%2Fdownload%2F%40react-native-community%2Fcli-platform-ios-4.6.0.tgz#c4b5fcdd060b356ca5cadb76b41ed57f1ec7ef29" | 1380 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-platform-ios/download/@react-native-community/cli-platform-ios-4.10.1.tgz#c73d7b33f22458aa806069df0dfc0ed55973679b" |
| 1090 | - integrity sha1-xLX83QYLNWylytt2tB7Vfx7H7yk= | 1381 | + integrity sha1-xz17M/IkWKqAYGnfDfwO1VlzZ5s= |
| 1091 | dependencies: | 1382 | dependencies: |
| 1092 | - "@react-native-community/cli-tools" "^4.6.0" | 1383 | + "@react-native-community/cli-tools" "^4.10.1" |
| 1093 | chalk "^3.0.0" | 1384 | chalk "^3.0.0" |
| 1094 | glob "^7.1.3" | 1385 | glob "^7.1.3" |
| 1095 | js-yaml "^3.13.1" | 1386 | js-yaml "^3.13.1" |
| @@ -1097,39 +1388,53 @@ | @@ -1097,39 +1388,53 @@ | ||
| 1097 | plist "^3.0.1" | 1388 | plist "^3.0.1" |
| 1098 | xcode "^2.0.0" | 1389 | xcode "^2.0.0" |
| 1099 | 1390 | ||
| 1100 | -"@react-native-community/cli-tools@^4.6.0": | 1391 | +"@react-native-community/cli-server-api@^4.10.1": |
| 1101 | - version "4.6.0" | 1392 | + version "4.10.1" |
| 1102 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli-tools/download/@react-native-community/cli-tools-4.6.0.tgz?cache=0&sync_timestamp=1586180558186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli-tools%2Fdownload%2F%40react-native-community%2Fcli-tools-4.6.0.tgz#9c6607842a3dd98897c236602192eba8886d48e6" | 1393 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-server-api/download/@react-native-community/cli-server-api-4.10.1.tgz#6467c1c7e08bda068873bfd3c9d6ce112be969fa" |
| 1103 | - integrity sha1-nGYHhCo92YiXwjZgIZLrqIhtSOY= | 1394 | + integrity sha1-ZGfBx+CL2gaIc7/TydbOESvpafo= |
| 1395 | + dependencies: | ||
| 1396 | + "@react-native-community/cli-debugger-ui" "^4.9.0" | ||
| 1397 | + "@react-native-community/cli-tools" "^4.10.1" | ||
| 1398 | + compression "^1.7.1" | ||
| 1399 | + connect "^3.6.5" | ||
| 1400 | + errorhandler "^1.5.0" | ||
| 1401 | + pretty-format "^25.1.0" | ||
| 1402 | + serve-static "^1.13.1" | ||
| 1403 | + ws "^1.1.0" | ||
| 1404 | + | ||
| 1405 | +"@react-native-community/cli-tools@^4.10.1": | ||
| 1406 | + version "4.10.1" | ||
| 1407 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-tools/download/@react-native-community/cli-tools-4.10.1.tgz#11f6833e646fbf53509282912e8d77658a8578b0" | ||
| 1408 | + integrity sha1-EfaDPmRvv1NQkoKRLo13ZYqFeLA= | ||
| 1104 | dependencies: | 1409 | dependencies: |
| 1105 | chalk "^3.0.0" | 1410 | chalk "^3.0.0" |
| 1106 | lodash "^4.17.15" | 1411 | lodash "^4.17.15" |
| 1107 | mime "^2.4.1" | 1412 | mime "^2.4.1" |
| 1108 | node-fetch "^2.6.0" | 1413 | node-fetch "^2.6.0" |
| 1414 | + open "^6.2.0" | ||
| 1415 | + shell-quote "1.6.1" | ||
| 1109 | 1416 | ||
| 1110 | -"@react-native-community/cli-types@^4.6.0": | 1417 | +"@react-native-community/cli-types@^4.10.1": |
| 1111 | - version "4.6.0" | 1418 | + version "4.10.1" |
| 1112 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli-types/download/@react-native-community/cli-types-4.6.0.tgz#7a1228cccd0bde94875098b8e23f761d46f750fd" | 1419 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli-types/download/@react-native-community/cli-types-4.10.1.tgz#d68a2dcd1649d3b3774823c64e5e9ce55bfbe1c9" |
| 1113 | - integrity sha1-ehIozM0L3pSHUJi44j92HUb3UP0= | 1420 | + integrity sha1-1ootzRZJ07N3SCPGTl6c5Vv74ck= |
| 1114 | 1421 | ||
| 1115 | -"@react-native-community/cli@^4.5.1": | 1422 | +"@react-native-community/cli@^4.7.0": |
| 1116 | - version "4.6.0" | 1423 | + version "4.10.1" |
| 1117 | - resolved "https://registry.npm.taobao.org/@react-native-community/cli/download/@react-native-community/cli-4.6.0.tgz?cache=0&sync_timestamp=1586180559415&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli%2Fdownload%2F%40react-native-community%2Fcli-4.6.0.tgz#ded55ebba5d83cfd5ace2565ac7e566f058c3a04" | 1424 | + resolved "https://registry.npm.taobao.org/@react-native-community/cli/download/@react-native-community/cli-4.10.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40react-native-community%2Fcli%2Fdownload%2F%40react-native-community%2Fcli-4.10.1.tgz#3c1e74f55c004936368d3576d4c1da7d02b89904" |
| 1118 | - integrity sha1-3tVeu6XYPP1aziVlrH5WbwWMOgQ= | 1425 | + integrity sha1-PB509VwASTY2jTV21MHafQK4mQQ= |
| 1119 | dependencies: | 1426 | dependencies: |
| 1120 | "@hapi/joi" "^15.0.3" | 1427 | "@hapi/joi" "^15.0.3" |
| 1121 | - "@react-native-community/cli-debugger-ui" "^4.2.1" | 1428 | + "@react-native-community/cli-debugger-ui" "^4.9.0" |
| 1122 | - "@react-native-community/cli-tools" "^4.6.0" | 1429 | + "@react-native-community/cli-server-api" "^4.10.1" |
| 1123 | - "@react-native-community/cli-types" "^4.6.0" | 1430 | + "@react-native-community/cli-tools" "^4.10.1" |
| 1431 | + "@react-native-community/cli-types" "^4.10.1" | ||
| 1124 | chalk "^3.0.0" | 1432 | chalk "^3.0.0" |
| 1125 | command-exists "^1.2.8" | 1433 | command-exists "^1.2.8" |
| 1126 | commander "^2.19.0" | 1434 | commander "^2.19.0" |
| 1127 | - compression "^1.7.1" | ||
| 1128 | - connect "^3.6.5" | ||
| 1129 | cosmiconfig "^5.1.0" | 1435 | cosmiconfig "^5.1.0" |
| 1130 | deepmerge "^3.2.0" | 1436 | deepmerge "^3.2.0" |
| 1131 | envinfo "^7.1.0" | 1437 | envinfo "^7.1.0" |
| 1132 | - errorhandler "^1.5.0" | ||
| 1133 | execa "^1.0.0" | 1438 | execa "^1.0.0" |
| 1134 | find-up "^4.1.0" | 1439 | find-up "^4.1.0" |
| 1135 | fs-extra "^8.1.0" | 1440 | fs-extra "^8.1.0" |
| @@ -1142,26 +1447,24 @@ | @@ -1142,26 +1447,24 @@ | ||
| 1142 | metro-config "^0.58.0" | 1447 | metro-config "^0.58.0" |
| 1143 | metro-core "^0.58.0" | 1448 | metro-core "^0.58.0" |
| 1144 | metro-react-native-babel-transformer "^0.58.0" | 1449 | metro-react-native-babel-transformer "^0.58.0" |
| 1450 | + metro-resolver "^0.58.0" | ||
| 1145 | minimist "^1.2.0" | 1451 | minimist "^1.2.0" |
| 1146 | mkdirp "^0.5.1" | 1452 | mkdirp "^0.5.1" |
| 1147 | node-stream-zip "^1.9.1" | 1453 | node-stream-zip "^1.9.1" |
| 1148 | - open "^6.2.0" | ||
| 1149 | ora "^3.4.0" | 1454 | ora "^3.4.0" |
| 1150 | pretty-format "^25.2.0" | 1455 | pretty-format "^25.2.0" |
| 1151 | semver "^6.3.0" | 1456 | semver "^6.3.0" |
| 1152 | serve-static "^1.13.1" | 1457 | serve-static "^1.13.1" |
| 1153 | - shell-quote "1.6.1" | ||
| 1154 | strip-ansi "^5.2.0" | 1458 | strip-ansi "^5.2.0" |
| 1155 | sudo-prompt "^9.0.0" | 1459 | sudo-prompt "^9.0.0" |
| 1156 | wcwidth "^1.0.1" | 1460 | wcwidth "^1.0.1" |
| 1157 | - ws "^1.1.0" | ||
| 1158 | 1461 | ||
| 1159 | -"@react-native-community/eslint-config@^1.0.0": | 1462 | +"@react-native-community/eslint-config@^1.1.0": |
| 1160 | - version "1.0.0" | 1463 | + version "1.1.0" |
| 1161 | - resolved "https://registry.npm.taobao.org/@react-native-community/eslint-config/download/@react-native-community/eslint-config-1.0.0.tgz#884288e91da7599e35cb34258ecf14a58a7cab35" | 1464 | + resolved "https://registry.npm.taobao.org/@react-native-community/eslint-config/download/@react-native-community/eslint-config-1.1.0.tgz#2dacad06dd44d13e778510864473fc6091f080c0" |
| 1162 | - integrity sha1-iEKI6R2nWZ41yzQljs8UpYp8qzU= | 1465 | + integrity sha1-LaytBt1E0T53hRCGRHP8YJHwgMA= |
| 1163 | dependencies: | 1466 | dependencies: |
| 1164 | - "@react-native-community/eslint-plugin" "^1.0.0" | 1467 | + "@react-native-community/eslint-plugin" "^1.1.0" |
| 1165 | "@typescript-eslint/eslint-plugin" "^2.25.0" | 1468 | "@typescript-eslint/eslint-plugin" "^2.25.0" |
| 1166 | "@typescript-eslint/parser" "^2.25.0" | 1469 | "@typescript-eslint/parser" "^2.25.0" |
| 1167 | babel-eslint "10.1.0" | 1470 | babel-eslint "10.1.0" |
| @@ -1175,10 +1478,10 @@ | @@ -1175,10 +1478,10 @@ | ||
| 1175 | eslint-plugin-react-native "3.8.1" | 1478 | eslint-plugin-react-native "3.8.1" |
| 1176 | prettier "^2.0.2" | 1479 | prettier "^2.0.2" |
| 1177 | 1480 | ||
| 1178 | -"@react-native-community/eslint-plugin@^1.0.0": | 1481 | +"@react-native-community/eslint-plugin@^1.1.0": |
| 1179 | - version "1.0.0" | 1482 | + version "1.1.0" |
| 1180 | - resolved "https://registry.npm.taobao.org/@react-native-community/eslint-plugin/download/@react-native-community/eslint-plugin-1.0.0.tgz#ae9a430f2c5795debca491f15a989fce86ea75a0" | 1483 | + resolved "https://registry.npm.taobao.org/@react-native-community/eslint-plugin/download/@react-native-community/eslint-plugin-1.1.0.tgz#e42b1bef12d2415411519fd528e64b593b1363dc" |
| 1181 | - integrity sha1-rppDDyxXld68pJHxWpifzobqdaA= | 1484 | + integrity sha1-5Csb7xLSQVQRUZ/VKOZLWTsTY9w= |
| 1182 | 1485 | ||
| 1183 | "@react-native-community/masked-view@^0.1.7": | 1486 | "@react-native-community/masked-view@^0.1.7": |
| 1184 | version "0.1.7" | 1487 | version "0.1.7" |
| @@ -1265,6 +1568,17 @@ | @@ -1265,6 +1568,17 @@ | ||
| 1265 | "@types/babel__template" "*" | 1568 | "@types/babel__template" "*" |
| 1266 | "@types/babel__traverse" "*" | 1569 | "@types/babel__traverse" "*" |
| 1267 | 1570 | ||
| 1571 | +"@types/babel__core@^7.1.7": | ||
| 1572 | + version "7.1.9" | ||
| 1573 | + resolved "https://registry.npm.taobao.org/@types/babel__core/download/@types/babel__core-7.1.9.tgz?cache=0&sync_timestamp=1592728815739&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fbabel__core%2Fdownload%2F%40types%2Fbabel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d" | ||
| 1574 | + integrity sha1-d+WdQ4UipvuJj6Q9w0VcbnLzlj0= | ||
| 1575 | + dependencies: | ||
| 1576 | + "@babel/parser" "^7.1.0" | ||
| 1577 | + "@babel/types" "^7.0.0" | ||
| 1578 | + "@types/babel__generator" "*" | ||
| 1579 | + "@types/babel__template" "*" | ||
| 1580 | + "@types/babel__traverse" "*" | ||
| 1581 | + | ||
| 1268 | "@types/babel__generator@*": | 1582 | "@types/babel__generator@*": |
| 1269 | version "7.6.1" | 1583 | version "7.6.1" |
| 1270 | resolved "https://registry.npm.taobao.org/@types/babel__generator/download/@types/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" | 1584 | resolved "https://registry.npm.taobao.org/@types/babel__generator/download/@types/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" |
| @@ -1302,6 +1616,13 @@ | @@ -1302,6 +1616,13 @@ | ||
| 1302 | resolved "https://registry.npm.taobao.org/@types/events/download/@types/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" | 1616 | resolved "https://registry.npm.taobao.org/@types/events/download/@types/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" |
| 1303 | integrity sha1-KGLz9Yqaf3w+eNefEw3U1xwlwqc= | 1617 | integrity sha1-KGLz9Yqaf3w+eNefEw3U1xwlwqc= |
| 1304 | 1618 | ||
| 1619 | +"@types/graceful-fs@^4.1.2": | ||
| 1620 | + version "4.1.3" | ||
| 1621 | + resolved "https://registry.npm.taobao.org/@types/graceful-fs/download/@types/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" | ||
| 1622 | + integrity sha1-A5rzX+Jr7DUAPo2G0u6cWGNUNI8= | ||
| 1623 | + dependencies: | ||
| 1624 | + "@types/node" "*" | ||
| 1625 | + | ||
| 1305 | "@types/hammerjs@^2.0.36": | 1626 | "@types/hammerjs@^2.0.36": |
| 1306 | version "2.0.36" | 1627 | version "2.0.36" |
| 1307 | resolved "https://registry.npm.taobao.org/@types/hammerjs/download/@types/hammerjs-2.0.36.tgz#17ce0a235e9ffbcdcdf5095646b374c2bf615a4c" | 1628 | resolved "https://registry.npm.taobao.org/@types/hammerjs/download/@types/hammerjs-2.0.36.tgz#17ce0a235e9ffbcdcdf5095646b374c2bf615a4c" |
| @@ -1347,6 +1668,11 @@ | @@ -1347,6 +1668,11 @@ | ||
| 1347 | resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" | 1668 | resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" |
| 1348 | integrity sha1-OP1z3f2bVaux4bLtV4y1W9e30zk= | 1669 | integrity sha1-OP1z3f2bVaux4bLtV4y1W9e30zk= |
| 1349 | 1670 | ||
| 1671 | +"@types/node@*": | ||
| 1672 | + version "14.0.27" | ||
| 1673 | + resolved "https://registry.npm.taobao.org/@types/node/download/@types/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1" | ||
| 1674 | + integrity sha1-oVGHOvWl6FG1GzsGXJ5jOQqeDrE= | ||
| 1675 | + | ||
| 1350 | "@types/parse-json@^4.0.0": | 1676 | "@types/parse-json@^4.0.0": |
| 1351 | version "4.0.0" | 1677 | version "4.0.0" |
| 1352 | resolved "https://registry.npm.taobao.org/@types/parse-json/download/@types/parse-json-4.0.0.tgz?cache=0&sync_timestamp=1580843162576&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fparse-json%2Fdownload%2F%40types%2Fparse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" | 1678 | resolved "https://registry.npm.taobao.org/@types/parse-json/download/@types/parse-json-4.0.0.tgz?cache=0&sync_timestamp=1580843162576&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fparse-json%2Fdownload%2F%40types%2Fparse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" |
| @@ -1365,13 +1691,20 @@ | @@ -1365,13 +1691,20 @@ | ||
| 1365 | "@types/react" "*" | 1691 | "@types/react" "*" |
| 1366 | "@types/react-native" "*" | 1692 | "@types/react-native" "*" |
| 1367 | 1693 | ||
| 1368 | -"@types/react-native@*", "@types/react-native@^0.62.0": | 1694 | +"@types/react-native@*": |
| 1369 | version "0.62.1" | 1695 | version "0.62.1" |
| 1370 | resolved "https://registry.npm.taobao.org/@types/react-native/download/@types/react-native-0.62.1.tgz#a51d50ade85420a68d594778316ed74e5040078c" | 1696 | resolved "https://registry.npm.taobao.org/@types/react-native/download/@types/react-native-0.62.1.tgz#a51d50ade85420a68d594778316ed74e5040078c" |
| 1371 | integrity sha1-pR1QrehUIKaNWUd4MW7XTlBAB4w= | 1697 | integrity sha1-pR1QrehUIKaNWUd4MW7XTlBAB4w= |
| 1372 | dependencies: | 1698 | dependencies: |
| 1373 | "@types/react" "*" | 1699 | "@types/react" "*" |
| 1374 | 1700 | ||
| 1701 | +"@types/react-native@^0.63.4": | ||
| 1702 | + version "0.63.4" | ||
| 1703 | + resolved "https://registry.npm.taobao.org/@types/react-native/download/@types/react-native-0.63.4.tgz#4610b0df0e5f0db4c68d495754ad9f8bc3b8893f" | ||
| 1704 | + integrity sha1-RhCw3w5fDbTGjUlXVK2fi8O4iT8= | ||
| 1705 | + dependencies: | ||
| 1706 | + "@types/react" "*" | ||
| 1707 | + | ||
| 1375 | "@types/react-redux@^7.1.7": | 1708 | "@types/react-redux@^7.1.7": |
| 1376 | version "7.1.7" | 1709 | version "7.1.7" |
| 1377 | resolved "https://registry.npm.taobao.org/@types/react-redux/download/@types/react-redux-7.1.7.tgz?cache=0&sync_timestamp=1580865748465&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Freact-redux%2Fdownload%2F%40types%2Freact-redux-7.1.7.tgz#12a0c529aba660696947384a059c5c6e08185c7a" | 1710 | resolved "https://registry.npm.taobao.org/@types/react-redux/download/@types/react-redux-7.1.7.tgz?cache=0&sync_timestamp=1580865748465&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Freact-redux%2Fdownload%2F%40types%2Freact-redux-7.1.7.tgz#12a0c529aba660696947384a059c5c6e08185c7a" |
| @@ -1676,6 +2009,14 @@ anymatch@^2.0.0: | @@ -1676,6 +2009,14 @@ anymatch@^2.0.0: | ||
| 1676 | micromatch "^3.1.4" | 2009 | micromatch "^3.1.4" |
| 1677 | normalize-path "^2.1.1" | 2010 | normalize-path "^2.1.1" |
| 1678 | 2011 | ||
| 2012 | +anymatch@^3.0.3: | ||
| 2013 | + version "3.1.1" | ||
| 2014 | + resolved "https://registry.npm.taobao.org/anymatch/download/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" | ||
| 2015 | + integrity sha1-xV7PAhheJGklk5kxDBc84xIzsUI= | ||
| 2016 | + dependencies: | ||
| 2017 | + normalize-path "^3.0.0" | ||
| 2018 | + picomatch "^2.0.4" | ||
| 2019 | + | ||
| 1679 | argparse@^1.0.7: | 2020 | argparse@^1.0.7: |
| 1680 | version "1.0.10" | 2021 | version "1.0.10" |
| 1681 | resolved "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz?cache=0&sync_timestamp=1571657259891&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fargparse%2Fdownload%2Fargparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" | 2022 | resolved "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz?cache=0&sync_timestamp=1571657259891&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fargparse%2Fdownload%2Fargparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" |
| @@ -1770,7 +2111,7 @@ art@^0.10.3: | @@ -1770,7 +2111,7 @@ art@^0.10.3: | ||
| 1770 | resolved "https://registry.npm.taobao.org/art/download/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2" | 2111 | resolved "https://registry.npm.taobao.org/art/download/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2" |
| 1771 | integrity sha1-sB2EqWjMzmII31WnM4OMlsrurqI= | 2112 | integrity sha1-sB2EqWjMzmII31WnM4OMlsrurqI= |
| 1772 | 2113 | ||
| 1773 | -asap@~2.0.3: | 2114 | +asap@~2.0.3, asap@~2.0.6: |
| 1774 | version "2.0.6" | 2115 | version "2.0.6" |
| 1775 | resolved "https://registry.npm.taobao.org/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" | 2116 | resolved "https://registry.npm.taobao.org/asap/download/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" |
| 1776 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= | 2117 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= |
| @@ -1866,6 +2207,20 @@ babel-jest@^24.9.0: | @@ -1866,6 +2207,20 @@ babel-jest@^24.9.0: | ||
| 1866 | chalk "^2.4.2" | 2207 | chalk "^2.4.2" |
| 1867 | slash "^2.0.0" | 2208 | slash "^2.0.0" |
| 1868 | 2209 | ||
| 2210 | +babel-jest@^25.1.0: | ||
| 2211 | + version "25.5.1" | ||
| 2212 | + resolved "https://registry.npm.taobao.org/babel-jest/download/babel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853" | ||
| 2213 | + integrity sha1-vC5hAfhJ1vauwJcg/8e8UzLmKFM= | ||
| 2214 | + dependencies: | ||
| 2215 | + "@jest/transform" "^25.5.1" | ||
| 2216 | + "@jest/types" "^25.5.0" | ||
| 2217 | + "@types/babel__core" "^7.1.7" | ||
| 2218 | + babel-plugin-istanbul "^6.0.0" | ||
| 2219 | + babel-preset-jest "^25.5.0" | ||
| 2220 | + chalk "^3.0.0" | ||
| 2221 | + graceful-fs "^4.2.4" | ||
| 2222 | + slash "^3.0.0" | ||
| 2223 | + | ||
| 1869 | babel-plugin-dynamic-import-node@^2.3.0: | 2224 | babel-plugin-dynamic-import-node@^2.3.0: |
| 1870 | version "2.3.0" | 2225 | version "2.3.0" |
| 1871 | resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" | 2226 | resolved "https://registry.npm.taobao.org/babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" |
| @@ -1883,6 +2238,17 @@ babel-plugin-istanbul@^5.1.0: | @@ -1883,6 +2238,17 @@ babel-plugin-istanbul@^5.1.0: | ||
| 1883 | istanbul-lib-instrument "^3.3.0" | 2238 | istanbul-lib-instrument "^3.3.0" |
| 1884 | test-exclude "^5.2.3" | 2239 | test-exclude "^5.2.3" |
| 1885 | 2240 | ||
| 2241 | +babel-plugin-istanbul@^6.0.0: | ||
| 2242 | + version "6.0.0" | ||
| 2243 | + resolved "https://registry.npm.taobao.org/babel-plugin-istanbul/download/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" | ||
| 2244 | + integrity sha1-4VnM3Jr5XgtXDHW0Vzt8NNZx12U= | ||
| 2245 | + dependencies: | ||
| 2246 | + "@babel/helper-plugin-utils" "^7.0.0" | ||
| 2247 | + "@istanbuljs/load-nyc-config" "^1.0.0" | ||
| 2248 | + "@istanbuljs/schema" "^0.1.2" | ||
| 2249 | + istanbul-lib-instrument "^4.0.0" | ||
| 2250 | + test-exclude "^6.0.0" | ||
| 2251 | + | ||
| 1886 | babel-plugin-jest-hoist@^24.9.0: | 2252 | babel-plugin-jest-hoist@^24.9.0: |
| 1887 | version "24.9.0" | 2253 | version "24.9.0" |
| 1888 | resolved "https://registry.npm.taobao.org/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" | 2254 | resolved "https://registry.npm.taobao.org/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" |
| @@ -1890,6 +2256,15 @@ babel-plugin-jest-hoist@^24.9.0: | @@ -1890,6 +2256,15 @@ babel-plugin-jest-hoist@^24.9.0: | ||
| 1890 | dependencies: | 2256 | dependencies: |
| 1891 | "@types/babel__traverse" "^7.0.6" | 2257 | "@types/babel__traverse" "^7.0.6" |
| 1892 | 2258 | ||
| 2259 | +babel-plugin-jest-hoist@^25.5.0: | ||
| 2260 | + version "25.5.0" | ||
| 2261 | + resolved "https://registry.npm.taobao.org/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-25.5.0.tgz?cache=0&sync_timestamp=1596102193955&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677" | ||
| 2262 | + integrity sha1-EpyAulx/x1uvOkW5Pi43LVfKJnc= | ||
| 2263 | + dependencies: | ||
| 2264 | + "@babel/template" "^7.3.3" | ||
| 2265 | + "@babel/types" "^7.3.3" | ||
| 2266 | + "@types/babel__traverse" "^7.0.6" | ||
| 2267 | + | ||
| 1893 | babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: | 2268 | babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0: |
| 1894 | version "7.0.0-beta.0" | 2269 | version "7.0.0-beta.0" |
| 1895 | resolved "https://registry.npm.taobao.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" | 2270 | resolved "https://registry.npm.taobao.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf" |
| @@ -1904,6 +2279,23 @@ babel-polyfill@6.26.0: | @@ -1904,6 +2279,23 @@ babel-polyfill@6.26.0: | ||
| 1904 | core-js "^2.5.0" | 2279 | core-js "^2.5.0" |
| 1905 | regenerator-runtime "^0.10.5" | 2280 | regenerator-runtime "^0.10.5" |
| 1906 | 2281 | ||
| 2282 | +babel-preset-current-node-syntax@^0.1.2: | ||
| 2283 | + version "0.1.3" | ||
| 2284 | + resolved "https://registry.npm.taobao.org/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" | ||
| 2285 | + integrity sha1-tLVHrN2/ljy6VVup+cu7cL/QRNo= | ||
| 2286 | + dependencies: | ||
| 2287 | + "@babel/plugin-syntax-async-generators" "^7.8.4" | ||
| 2288 | + "@babel/plugin-syntax-bigint" "^7.8.3" | ||
| 2289 | + "@babel/plugin-syntax-class-properties" "^7.8.3" | ||
| 2290 | + "@babel/plugin-syntax-import-meta" "^7.8.3" | ||
| 2291 | + "@babel/plugin-syntax-json-strings" "^7.8.3" | ||
| 2292 | + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" | ||
| 2293 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" | ||
| 2294 | + "@babel/plugin-syntax-numeric-separator" "^7.8.3" | ||
| 2295 | + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" | ||
| 2296 | + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" | ||
| 2297 | + "@babel/plugin-syntax-optional-chaining" "^7.8.3" | ||
| 2298 | + | ||
| 1907 | babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.3.0: | 2299 | babel-preset-fbjs@^3.2.0, babel-preset-fbjs@^3.3.0: |
| 1908 | version "3.3.0" | 2300 | version "3.3.0" |
| 1909 | resolved "https://registry.npm.taobao.org/babel-preset-fbjs/download/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" | 2301 | resolved "https://registry.npm.taobao.org/babel-preset-fbjs/download/babel-preset-fbjs-3.3.0.tgz#a6024764ea86c8e06a22d794ca8b69534d263541" |
| @@ -1945,6 +2337,14 @@ babel-preset-jest@^24.9.0: | @@ -1945,6 +2337,14 @@ babel-preset-jest@^24.9.0: | ||
| 1945 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" | 2337 | "@babel/plugin-syntax-object-rest-spread" "^7.0.0" |
| 1946 | babel-plugin-jest-hoist "^24.9.0" | 2338 | babel-plugin-jest-hoist "^24.9.0" |
| 1947 | 2339 | ||
| 2340 | +babel-preset-jest@^25.5.0: | ||
| 2341 | + version "25.5.0" | ||
| 2342 | + resolved "https://registry.npm.taobao.org/babel-preset-jest/download/babel-preset-jest-25.5.0.tgz?cache=0&sync_timestamp=1596102315188&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49" | ||
| 2343 | + integrity sha1-wdfxkYKUh6kHdkxlMH+qDmZZC0k= | ||
| 2344 | + dependencies: | ||
| 2345 | + babel-plugin-jest-hoist "^25.5.0" | ||
| 2346 | + babel-preset-current-node-syntax "^0.1.2" | ||
| 2347 | + | ||
| 1948 | babel-runtime@^6.23.0, babel-runtime@^6.26.0: | 2348 | babel-runtime@^6.23.0, babel-runtime@^6.26.0: |
| 1949 | version "6.26.0" | 2349 | version "6.26.0" |
| 1950 | resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" | 2350 | resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" |
| @@ -2285,15 +2685,6 @@ cli-width@^2.0.0: | @@ -2285,15 +2685,6 @@ cli-width@^2.0.0: | ||
| 2285 | resolved "https://registry.npm.taobao.org/cli-width/download/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" | 2685 | resolved "https://registry.npm.taobao.org/cli-width/download/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" |
| 2286 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= | 2686 | integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= |
| 2287 | 2687 | ||
| 2288 | -cliui@^4.0.0: | ||
| 2289 | - version "4.1.0" | ||
| 2290 | - resolved "https://registry.npm.taobao.org/cliui/download/cliui-4.1.0.tgz?cache=0&sync_timestamp=1573943292170&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" | ||
| 2291 | - integrity sha1-NIQi2+gtgAswIu709qwQvy5NG0k= | ||
| 2292 | - dependencies: | ||
| 2293 | - string-width "^2.1.1" | ||
| 2294 | - strip-ansi "^4.0.0" | ||
| 2295 | - wrap-ansi "^2.0.0" | ||
| 2296 | - | ||
| 2297 | cliui@^5.0.0: | 2688 | cliui@^5.0.0: |
| 2298 | version "5.0.0" | 2689 | version "5.0.0" |
| 2299 | resolved "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz?cache=0&sync_timestamp=1573943292170&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" | 2690 | resolved "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz?cache=0&sync_timestamp=1573943292170&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcliui%2Fdownload%2Fcliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" |
| @@ -2753,11 +3144,6 @@ core-js-pure@^3.0.0: | @@ -2753,11 +3144,6 @@ core-js-pure@^3.0.0: | ||
| 2753 | resolved "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a" | 3144 | resolved "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a" |
| 2754 | integrity sha1-S/G6hm4lgU8UnU6aqgjDYXNQbjo= | 3145 | integrity sha1-S/G6hm4lgU8UnU6aqgjDYXNQbjo= |
| 2755 | 3146 | ||
| 2756 | -core-js@^1.0.0: | ||
| 2757 | - version "1.2.7" | ||
| 2758 | - resolved "https://registry.npm.taobao.org/core-js/download/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" | ||
| 2759 | - integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= | ||
| 2760 | - | ||
| 2761 | core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: | 3147 | core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0: |
| 2762 | version "2.6.11" | 3148 | version "2.6.11" |
| 2763 | resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" | 3149 | resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" |
| @@ -2789,15 +3175,6 @@ cosmiconfig@^6.0.0: | @@ -2789,15 +3175,6 @@ cosmiconfig@^6.0.0: | ||
| 2789 | path-type "^4.0.0" | 3175 | path-type "^4.0.0" |
| 2790 | yaml "^1.7.2" | 3176 | yaml "^1.7.2" |
| 2791 | 3177 | ||
| 2792 | -create-react-class@^15.6.3: | ||
| 2793 | - version "15.6.3" | ||
| 2794 | - resolved "https://registry.npm.taobao.org/create-react-class/download/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" | ||
| 2795 | - integrity sha1-LXMjf7P5cK5uvgEanmb0bbyoADY= | ||
| 2796 | - dependencies: | ||
| 2797 | - fbjs "^0.8.9" | ||
| 2798 | - loose-envify "^1.3.1" | ||
| 2799 | - object-assign "^4.1.1" | ||
| 2800 | - | ||
| 2801 | cross-spawn@^5.1.0: | 3178 | cross-spawn@^5.1.0: |
| 2802 | version "5.1.0" | 3179 | version "5.1.0" |
| 2803 | resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" | 3180 | resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" |
| @@ -3388,13 +3765,6 @@ eslint-plugin-react@7.19.0: | @@ -3388,13 +3765,6 @@ eslint-plugin-react@7.19.0: | ||
| 3388 | string.prototype.matchall "^4.0.2" | 3765 | string.prototype.matchall "^4.0.2" |
| 3389 | xregexp "^4.3.0" | 3766 | xregexp "^4.3.0" |
| 3390 | 3767 | ||
| 3391 | -eslint-plugin-relay@1.4.1: | ||
| 3392 | - version "1.4.1" | ||
| 3393 | - resolved "https://registry.npm.taobao.org/eslint-plugin-relay/download/eslint-plugin-relay-1.4.1.tgz#5af2ac13e24bd01ad17b6a4014204918d65021cd" | ||
| 3394 | - integrity sha1-WvKsE+JL0BrRe2pAFCBJGNZQIc0= | ||
| 3395 | - dependencies: | ||
| 3396 | - graphql "^14.0.0" | ||
| 3397 | - | ||
| 3398 | eslint-scope@^5.0.0: | 3768 | eslint-scope@^5.0.0: |
| 3399 | version "5.0.0" | 3769 | version "5.0.0" |
| 3400 | resolved "https://registry.npm.taobao.org/eslint-scope/download/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" | 3770 | resolved "https://registry.npm.taobao.org/eslint-scope/download/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" |
| @@ -3751,19 +4121,6 @@ fbjs-scripts@^1.1.0: | @@ -3751,19 +4121,6 @@ fbjs-scripts@^1.1.0: | ||
| 3751 | semver "^5.1.0" | 4121 | semver "^5.1.0" |
| 3752 | through2 "^2.0.0" | 4122 | through2 "^2.0.0" |
| 3753 | 4123 | ||
| 3754 | -fbjs@^0.8.9: | ||
| 3755 | - version "0.8.17" | ||
| 3756 | - resolved "https://registry.npm.taobao.org/fbjs/download/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" | ||
| 3757 | - integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= | ||
| 3758 | - dependencies: | ||
| 3759 | - core-js "^1.0.0" | ||
| 3760 | - isomorphic-fetch "^2.1.1" | ||
| 3761 | - loose-envify "^1.0.0" | ||
| 3762 | - object-assign "^4.1.0" | ||
| 3763 | - promise "^7.1.1" | ||
| 3764 | - setimmediate "^1.0.5" | ||
| 3765 | - ua-parser-js "^0.7.18" | ||
| 3766 | - | ||
| 3767 | fbjs@^1.0.0: | 4124 | fbjs@^1.0.0: |
| 3768 | version "1.0.0" | 4125 | version "1.0.0" |
| 3769 | resolved "https://registry.npm.taobao.org/fbjs/download/fbjs-1.0.0.tgz#52c215e0883a3c86af2a7a776ed51525ae8e0a5a" | 4126 | resolved "https://registry.npm.taobao.org/fbjs/download/fbjs-1.0.0.tgz#52c215e0883a3c86af2a7a776ed51525ae8e0a5a" |
| @@ -4017,6 +4374,11 @@ fsevents@^1.2.7: | @@ -4017,6 +4374,11 @@ fsevents@^1.2.7: | ||
| 4017 | bindings "^1.5.0" | 4374 | bindings "^1.5.0" |
| 4018 | nan "^2.12.1" | 4375 | nan "^2.12.1" |
| 4019 | 4376 | ||
| 4377 | +fsevents@^2.1.2: | ||
| 4378 | + version "2.1.3" | ||
| 4379 | + resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" | ||
| 4380 | + integrity sha1-+3OHA66NL5/pAMM4Nt3r7ouX8j4= | ||
| 4381 | + | ||
| 4020 | function-bind@^1.1.1: | 4382 | function-bind@^1.1.1: |
| 4021 | version "1.1.1" | 4383 | version "1.1.1" |
| 4022 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" | 4384 | resolved "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" |
| @@ -4055,11 +4417,6 @@ gensync@^1.0.0-beta.1: | @@ -4055,11 +4417,6 @@ gensync@^1.0.0-beta.1: | ||
| 4055 | resolved "https://registry.npm.taobao.org/gensync/download/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" | 4417 | resolved "https://registry.npm.taobao.org/gensync/download/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" |
| 4056 | integrity sha1-WPQ2H/mH5f9uHnohCCeqNx6qwmk= | 4418 | integrity sha1-WPQ2H/mH5f9uHnohCCeqNx6qwmk= |
| 4057 | 4419 | ||
| 4058 | -get-caller-file@^1.0.1: | ||
| 4059 | - version "1.0.3" | ||
| 4060 | - resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" | ||
| 4061 | - integrity sha1-+Xj6TJDR3+f/LWvtoqUV5xO9z0o= | ||
| 4062 | - | ||
| 4063 | get-caller-file@^2.0.1: | 4420 | get-caller-file@^2.0.1: |
| 4064 | version "2.0.5" | 4421 | version "2.0.5" |
| 4065 | resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" | 4422 | resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" |
| @@ -4070,6 +4427,11 @@ get-own-enumerable-property-symbols@^3.0.0: | @@ -4070,6 +4427,11 @@ get-own-enumerable-property-symbols@^3.0.0: | ||
| 4070 | resolved "https://registry.npm.taobao.org/get-own-enumerable-property-symbols/download/get-own-enumerable-property-symbols-3.0.2.tgz?cache=0&sync_timestamp=1575993334275&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fget-own-enumerable-property-symbols%2Fdownload%2Fget-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" | 4427 | resolved "https://registry.npm.taobao.org/get-own-enumerable-property-symbols/download/get-own-enumerable-property-symbols-3.0.2.tgz?cache=0&sync_timestamp=1575993334275&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fget-own-enumerable-property-symbols%2Fdownload%2Fget-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" |
| 4071 | integrity sha1-tf3nfyLL4185C04ImSLFC85u9mQ= | 4428 | integrity sha1-tf3nfyLL4185C04ImSLFC85u9mQ= |
| 4072 | 4429 | ||
| 4430 | +get-package-type@^0.1.0: | ||
| 4431 | + version "0.1.0" | ||
| 4432 | + resolved "https://registry.npm.taobao.org/get-package-type/download/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" | ||
| 4433 | + integrity sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro= | ||
| 4434 | + | ||
| 4073 | get-pkg-repo@^1.0.0: | 4435 | get-pkg-repo@^1.0.0: |
| 4074 | version "1.4.0" | 4436 | version "1.4.0" |
| 4075 | resolved "https://registry.npm.taobao.org/get-pkg-repo/download/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" | 4437 | resolved "https://registry.npm.taobao.org/get-pkg-repo/download/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" |
| @@ -4195,7 +4557,7 @@ glob@7.1.4: | @@ -4195,7 +4557,7 @@ glob@7.1.4: | ||
| 4195 | once "^1.3.0" | 4557 | once "^1.3.0" |
| 4196 | path-is-absolute "^1.0.0" | 4558 | path-is-absolute "^1.0.0" |
| 4197 | 4559 | ||
| 4198 | -glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6: | 4560 | +glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: |
| 4199 | version "7.1.6" | 4561 | version "7.1.6" |
| 4200 | resolved "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz?cache=0&sync_timestamp=1573078121947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" | 4562 | resolved "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz?cache=0&sync_timestamp=1573078121947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglob%2Fdownload%2Fglob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" |
| 4201 | integrity sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY= | 4563 | integrity sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY= |
| @@ -4251,12 +4613,10 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3 | @@ -4251,12 +4613,10 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3 | ||
| 4251 | resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" | 4613 | resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" |
| 4252 | integrity sha1-ShL/G2A3bvCYYsIJPt2Qgyi+hCM= | 4614 | integrity sha1-ShL/G2A3bvCYYsIJPt2Qgyi+hCM= |
| 4253 | 4615 | ||
| 4254 | -graphql@^14.0.0: | 4616 | +graceful-fs@^4.2.4: |
| 4255 | - version "14.6.0" | 4617 | + version "4.2.4" |
| 4256 | - resolved "https://registry.npm.taobao.org/graphql/download/graphql-14.6.0.tgz?cache=0&sync_timestamp=1585840556440&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fgraphql%2Fdownload%2Fgraphql-14.6.0.tgz#57822297111e874ea12f5cd4419616930cd83e49" | 4618 | + resolved "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.4.tgz?cache=0&sync_timestamp=1589682809142&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" |
| 4257 | - integrity sha1-V4IilxEeh06hL1zUQZYWkwzYPkk= | 4619 | + integrity sha1-Ila94U02MpWMRl68ltxGfKB6Kfs= |
| 4258 | - dependencies: | ||
| 4259 | - iterall "^1.2.2" | ||
| 4260 | 4620 | ||
| 4261 | growly@^1.3.0: | 4621 | growly@^1.3.0: |
| 4262 | version "1.3.0" | 4622 | version "1.3.0" |
| @@ -4348,10 +4708,10 @@ has@^1.0.3: | @@ -4348,10 +4708,10 @@ has@^1.0.3: | ||
| 4348 | dependencies: | 4708 | dependencies: |
| 4349 | function-bind "^1.1.1" | 4709 | function-bind "^1.1.1" |
| 4350 | 4710 | ||
| 4351 | -hermes-engine@~0.4.0: | 4711 | +hermes-engine@~0.5.0: |
| 4352 | - version "0.4.1" | 4712 | + version "0.5.1" |
| 4353 | - resolved "https://registry.npm.taobao.org/hermes-engine/download/hermes-engine-0.4.1.tgz#2d02b295596298643c4d24b86687eb554db9e950" | 4713 | + resolved "https://registry.npm.taobao.org/hermes-engine/download/hermes-engine-0.5.1.tgz?cache=0&sync_timestamp=1596501038658&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhermes-engine%2Fdownload%2Fhermes-engine-0.5.1.tgz#601115e4b1e0a17d9aa91243b96277de4e926e09" |
| 4354 | - integrity sha1-LQKylVlimGQ8TSS4ZofrVU256VA= | 4714 | + integrity sha1-YBEV5LHgoX2aqRJDuWJ33k6Sbgk= |
| 4355 | 4715 | ||
| 4356 | hoist-non-react-statics@^2.3.1: | 4716 | hoist-non-react-statics@^2.3.1: |
| 4357 | version "2.5.5" | 4717 | version "2.5.5" |
| @@ -4600,11 +4960,6 @@ invariant@2.2.4, invariant@^2.2.4: | @@ -4600,11 +4960,6 @@ invariant@2.2.4, invariant@^2.2.4: | ||
| 4600 | dependencies: | 4960 | dependencies: |
| 4601 | loose-envify "^1.0.0" | 4961 | loose-envify "^1.0.0" |
| 4602 | 4962 | ||
| 4603 | -invert-kv@^2.0.0: | ||
| 4604 | - version "2.0.0" | ||
| 4605 | - resolved "https://registry.npm.taobao.org/invert-kv/download/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" | ||
| 4606 | - integrity sha1-c5P1r6Weyf9fZ6J2INEcIm4+7AI= | ||
| 4607 | - | ||
| 4608 | is-accessor-descriptor@^0.1.6: | 4963 | is-accessor-descriptor@^0.1.6: |
| 4609 | version "0.1.6" | 4964 | version "0.1.6" |
| 4610 | resolved "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" | 4965 | resolved "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" |
| @@ -4821,7 +5176,7 @@ is-text-path@^1.0.1: | @@ -4821,7 +5176,7 @@ is-text-path@^1.0.1: | ||
| 4821 | dependencies: | 5176 | dependencies: |
| 4822 | text-extensions "^1.0.0" | 5177 | text-extensions "^1.0.0" |
| 4823 | 5178 | ||
| 4824 | -is-typedarray@~1.0.0: | 5179 | +is-typedarray@^1.0.0, is-typedarray@~1.0.0: |
| 4825 | version "1.0.0" | 5180 | version "1.0.0" |
| 4826 | resolved "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" | 5181 | resolved "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" |
| 4827 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= | 5182 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= |
| @@ -4886,6 +5241,11 @@ istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: | @@ -4886,6 +5241,11 @@ istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: | ||
| 4886 | resolved "https://registry.npm.taobao.org/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz?cache=0&sync_timestamp=1577062542104&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fistanbul-lib-coverage%2Fdownload%2Fistanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" | 5241 | resolved "https://registry.npm.taobao.org/istanbul-lib-coverage/download/istanbul-lib-coverage-2.0.5.tgz?cache=0&sync_timestamp=1577062542104&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fistanbul-lib-coverage%2Fdownload%2Fistanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" |
| 4887 | integrity sha1-Z18KtpUD+tSx2En3NrqsqAM0T0k= | 5242 | integrity sha1-Z18KtpUD+tSx2En3NrqsqAM0T0k= |
| 4888 | 5243 | ||
| 5244 | +istanbul-lib-coverage@^3.0.0: | ||
| 5245 | + version "3.0.0" | ||
| 5246 | + resolved "https://registry.npm.taobao.org/istanbul-lib-coverage/download/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" | ||
| 5247 | + integrity sha1-9ZRKN8cLVQsCp4pcOyBVsoDOyOw= | ||
| 5248 | + | ||
| 4889 | istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: | 5249 | istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: |
| 4890 | version "3.3.0" | 5250 | version "3.3.0" |
| 4891 | resolved "https://registry.npm.taobao.org/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" | 5251 | resolved "https://registry.npm.taobao.org/istanbul-lib-instrument/download/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" |
| @@ -4899,6 +5259,16 @@ istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: | @@ -4899,6 +5259,16 @@ istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: | ||
| 4899 | istanbul-lib-coverage "^2.0.5" | 5259 | istanbul-lib-coverage "^2.0.5" |
| 4900 | semver "^6.0.0" | 5260 | semver "^6.0.0" |
| 4901 | 5261 | ||
| 5262 | +istanbul-lib-instrument@^4.0.0: | ||
| 5263 | + version "4.0.3" | ||
| 5264 | + resolved "https://registry.npm.taobao.org/istanbul-lib-instrument/download/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" | ||
| 5265 | + integrity sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0= | ||
| 5266 | + dependencies: | ||
| 5267 | + "@babel/core" "^7.7.5" | ||
| 5268 | + "@istanbuljs/schema" "^0.1.2" | ||
| 5269 | + istanbul-lib-coverage "^3.0.0" | ||
| 5270 | + semver "^6.3.0" | ||
| 5271 | + | ||
| 4902 | istanbul-lib-report@^2.0.4: | 5272 | istanbul-lib-report@^2.0.4: |
| 4903 | version "2.0.8" | 5273 | version "2.0.8" |
| 4904 | resolved "https://registry.npm.taobao.org/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz?cache=0&sync_timestamp=1577062542584&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fistanbul-lib-report%2Fdownload%2Fistanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" | 5274 | resolved "https://registry.npm.taobao.org/istanbul-lib-report/download/istanbul-lib-report-2.0.8.tgz?cache=0&sync_timestamp=1577062542584&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fistanbul-lib-report%2Fdownload%2Fistanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" |
| @@ -4926,11 +5296,6 @@ istanbul-reports@^2.2.6: | @@ -4926,11 +5296,6 @@ istanbul-reports@^2.2.6: | ||
| 4926 | dependencies: | 5296 | dependencies: |
| 4927 | html-escaper "^2.0.0" | 5297 | html-escaper "^2.0.0" |
| 4928 | 5298 | ||
| 4929 | -iterall@^1.2.2: | ||
| 4930 | - version "1.3.0" | ||
| 4931 | - resolved "https://registry.npm.taobao.org/iterall/download/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" | ||
| 4932 | - integrity sha1-r8sISS4pFcvYoIhOuTqMlNDXL+o= | ||
| 4933 | - | ||
| 4934 | jest-changed-files@^24.9.0: | 5299 | jest-changed-files@^24.9.0: |
| 4935 | version "24.9.0" | 5300 | version "24.9.0" |
| 4936 | resolved "https://registry.npm.taobao.org/jest-changed-files/download/jest-changed-files-24.9.0.tgz?cache=0&sync_timestamp=1585823699148&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-changed-files%2Fdownload%2Fjest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" | 5301 | resolved "https://registry.npm.taobao.org/jest-changed-files/download/jest-changed-files-24.9.0.tgz?cache=0&sync_timestamp=1585823699148&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-changed-files%2Fdownload%2Fjest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" |
| @@ -5057,6 +5422,26 @@ jest-haste-map@^24.7.1, jest-haste-map@^24.9.0: | @@ -5057,6 +5422,26 @@ jest-haste-map@^24.7.1, jest-haste-map@^24.9.0: | ||
| 5057 | optionalDependencies: | 5422 | optionalDependencies: |
| 5058 | fsevents "^1.2.7" | 5423 | fsevents "^1.2.7" |
| 5059 | 5424 | ||
| 5425 | +jest-haste-map@^25.5.1: | ||
| 5426 | + version "25.5.1" | ||
| 5427 | + resolved "https://registry.npm.taobao.org/jest-haste-map/download/jest-haste-map-25.5.1.tgz?cache=0&sync_timestamp=1596192849370&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-haste-map%2Fdownload%2Fjest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943" | ||
| 5428 | + integrity sha1-HfEPcWwdlOYKHr93mMn7PaJiCUM= | ||
| 5429 | + dependencies: | ||
| 5430 | + "@jest/types" "^25.5.0" | ||
| 5431 | + "@types/graceful-fs" "^4.1.2" | ||
| 5432 | + anymatch "^3.0.3" | ||
| 5433 | + fb-watchman "^2.0.0" | ||
| 5434 | + graceful-fs "^4.2.4" | ||
| 5435 | + jest-serializer "^25.5.0" | ||
| 5436 | + jest-util "^25.5.0" | ||
| 5437 | + jest-worker "^25.5.0" | ||
| 5438 | + micromatch "^4.0.2" | ||
| 5439 | + sane "^4.0.3" | ||
| 5440 | + walker "^1.0.7" | ||
| 5441 | + which "^2.0.2" | ||
| 5442 | + optionalDependencies: | ||
| 5443 | + fsevents "^2.1.2" | ||
| 5444 | + | ||
| 5060 | jest-jasmine2@^24.9.0: | 5445 | jest-jasmine2@^24.9.0: |
| 5061 | version "24.9.0" | 5446 | version "24.9.0" |
| 5062 | resolved "https://registry.npm.taobao.org/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1585900672470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" | 5447 | resolved "https://registry.npm.taobao.org/jest-jasmine2/download/jest-jasmine2-24.9.0.tgz?cache=0&sync_timestamp=1585900672470&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" |
| @@ -5128,6 +5513,11 @@ jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: | @@ -5128,6 +5513,11 @@ jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: | ||
| 5128 | resolved "https://registry.npm.taobao.org/jest-regex-util/download/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" | 5513 | resolved "https://registry.npm.taobao.org/jest-regex-util/download/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" |
| 5129 | integrity sha1-wT+zOAveIr9ldUMsST6o/jeWVjY= | 5514 | integrity sha1-wT+zOAveIr9ldUMsST6o/jeWVjY= |
| 5130 | 5515 | ||
| 5516 | +jest-regex-util@^25.2.6: | ||
| 5517 | + version "25.2.6" | ||
| 5518 | + resolved "https://registry.npm.taobao.org/jest-regex-util/download/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" | ||
| 5519 | + integrity sha1-2EfTi6FdIRjTsGOQBWAo0PL9OWQ= | ||
| 5520 | + | ||
| 5131 | jest-resolve-dependencies@^24.9.0: | 5521 | jest-resolve-dependencies@^24.9.0: |
| 5132 | version "24.9.0" | 5522 | version "24.9.0" |
| 5133 | resolved "https://registry.npm.taobao.org/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz?cache=0&sync_timestamp=1585900593076&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-resolve-dependencies%2Fdownload%2Fjest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" | 5523 | resolved "https://registry.npm.taobao.org/jest-resolve-dependencies/download/jest-resolve-dependencies-24.9.0.tgz?cache=0&sync_timestamp=1585900593076&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-resolve-dependencies%2Fdownload%2Fjest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" |
| @@ -5207,6 +5597,13 @@ jest-serializer@^24.4.0, jest-serializer@^24.9.0: | @@ -5207,6 +5597,13 @@ jest-serializer@^24.4.0, jest-serializer@^24.9.0: | ||
| 5207 | resolved "https://registry.npm.taobao.org/jest-serializer/download/jest-serializer-24.9.0.tgz?cache=0&sync_timestamp=1585823409611&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-serializer%2Fdownload%2Fjest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" | 5597 | resolved "https://registry.npm.taobao.org/jest-serializer/download/jest-serializer-24.9.0.tgz?cache=0&sync_timestamp=1585823409611&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-serializer%2Fdownload%2Fjest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" |
| 5208 | integrity sha1-5tfX75bTHouQeacUdUxdXFgojnM= | 5598 | integrity sha1-5tfX75bTHouQeacUdUxdXFgojnM= |
| 5209 | 5599 | ||
| 5600 | +jest-serializer@^25.5.0: | ||
| 5601 | + version "25.5.0" | ||
| 5602 | + resolved "https://registry.npm.taobao.org/jest-serializer/download/jest-serializer-25.5.0.tgz?cache=0&sync_timestamp=1596102222046&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-serializer%2Fdownload%2Fjest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b" | ||
| 5603 | + integrity sha1-qZP0hOdptO1U5w4O/bdAB/UDBys= | ||
| 5604 | + dependencies: | ||
| 5605 | + graceful-fs "^4.2.4" | ||
| 5606 | + | ||
| 5210 | jest-snapshot@^24.9.0: | 5607 | jest-snapshot@^24.9.0: |
| 5211 | version "24.9.0" | 5608 | version "24.9.0" |
| 5212 | resolved "https://registry.npm.taobao.org/jest-snapshot/download/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" | 5609 | resolved "https://registry.npm.taobao.org/jest-snapshot/download/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" |
| @@ -5244,6 +5641,17 @@ jest-util@^24.9.0: | @@ -5244,6 +5641,17 @@ jest-util@^24.9.0: | ||
| 5244 | slash "^2.0.0" | 5641 | slash "^2.0.0" |
| 5245 | source-map "^0.6.0" | 5642 | source-map "^0.6.0" |
| 5246 | 5643 | ||
| 5644 | +jest-util@^25.5.0: | ||
| 5645 | + version "25.5.0" | ||
| 5646 | + resolved "https://registry.npm.taobao.org/jest-util/download/jest-util-25.5.0.tgz?cache=0&sync_timestamp=1596103922535&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-util%2Fdownload%2Fjest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0" | ||
| 5647 | + integrity sha1-McY7XW6QEnTSZKT+yEkjCqP6NbA= | ||
| 5648 | + dependencies: | ||
| 5649 | + "@jest/types" "^25.5.0" | ||
| 5650 | + chalk "^3.0.0" | ||
| 5651 | + graceful-fs "^4.2.4" | ||
| 5652 | + is-ci "^2.0.0" | ||
| 5653 | + make-dir "^3.0.0" | ||
| 5654 | + | ||
| 5247 | jest-validate@^24.7.0, jest-validate@^24.9.0: | 5655 | jest-validate@^24.7.0, jest-validate@^24.9.0: |
| 5248 | version "24.9.0" | 5656 | version "24.9.0" |
| 5249 | resolved "https://registry.npm.taobao.org/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1585823462289&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" | 5657 | resolved "https://registry.npm.taobao.org/jest-validate/download/jest-validate-24.9.0.tgz?cache=0&sync_timestamp=1585823462289&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-validate%2Fdownload%2Fjest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" |
| @@ -5277,6 +5685,14 @@ jest-worker@^24.6.0, jest-worker@^24.9.0: | @@ -5277,6 +5685,14 @@ jest-worker@^24.6.0, jest-worker@^24.9.0: | ||
| 5277 | merge-stream "^2.0.0" | 5685 | merge-stream "^2.0.0" |
| 5278 | supports-color "^6.1.0" | 5686 | supports-color "^6.1.0" |
| 5279 | 5687 | ||
| 5688 | +jest-worker@^25.5.0: | ||
| 5689 | + version "25.5.0" | ||
| 5690 | + resolved "https://registry.npm.taobao.org/jest-worker/download/jest-worker-25.5.0.tgz?cache=0&sync_timestamp=1596108959665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest-worker%2Fdownload%2Fjest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" | ||
| 5691 | + integrity sha1-JhHQcbec6g9D7lej0RhZOsFUfbE= | ||
| 5692 | + dependencies: | ||
| 5693 | + merge-stream "^2.0.0" | ||
| 5694 | + supports-color "^7.0.0" | ||
| 5695 | + | ||
| 5280 | jest@^24.9.0: | 5696 | jest@^24.9.0: |
| 5281 | version "24.9.0" | 5697 | version "24.9.0" |
| 5282 | resolved "https://registry.npm.taobao.org/jest/download/jest-24.9.0.tgz?cache=0&sync_timestamp=1585900675083&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest%2Fdownload%2Fjest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" | 5698 | resolved "https://registry.npm.taobao.org/jest/download/jest-24.9.0.tgz?cache=0&sync_timestamp=1585900675083&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjest%2Fdownload%2Fjest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" |
| @@ -5489,13 +5905,6 @@ kuler@0.0.x: | @@ -5489,13 +5905,6 @@ kuler@0.0.x: | ||
| 5489 | dependencies: | 5905 | dependencies: |
| 5490 | colornames "0.0.2" | 5906 | colornames "0.0.2" |
| 5491 | 5907 | ||
| 5492 | -lcid@^2.0.0: | ||
| 5493 | - version "2.0.0" | ||
| 5494 | - resolved "https://registry.npm.taobao.org/lcid/download/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" | ||
| 5495 | - integrity sha1-bvXS32DlL4LrIopMNz6NHzlyU88= | ||
| 5496 | - dependencies: | ||
| 5497 | - invert-kv "^2.0.0" | ||
| 5498 | - | ||
| 5499 | left-pad@^1.3.0: | 5908 | left-pad@^1.3.0: |
| 5500 | version "1.3.0" | 5909 | version "1.3.0" |
| 5501 | resolved "https://registry.npm.taobao.org/left-pad/download/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" | 5910 | resolved "https://registry.npm.taobao.org/left-pad/download/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" |
| @@ -5687,6 +6096,11 @@ lodash@4.17.15, lodash@^4, lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, loda | @@ -5687,6 +6096,11 @@ lodash@4.17.15, lodash@^4, lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, loda | ||
| 5687 | resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz?cache=0&sync_timestamp=1571657272199&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" | 6096 | resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz?cache=0&sync_timestamp=1571657272199&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" |
| 5688 | integrity sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg= | 6097 | integrity sha1-tEf2ZwoEVbv+7dETku/zMOoJdUg= |
| 5689 | 6098 | ||
| 6099 | +lodash@^4.17.19: | ||
| 6100 | + version "4.17.19" | ||
| 6101 | + resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.19.tgz?cache=0&sync_timestamp=1594226931791&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" | ||
| 6102 | + integrity sha1-5I3e2+MLMyF4PFtDAfvTU7weSks= | ||
| 6103 | + | ||
| 5690 | log-symbols@^1.0.2: | 6104 | log-symbols@^1.0.2: |
| 5691 | version "1.0.2" | 6105 | version "1.0.2" |
| 5692 | resolved "https://registry.npm.taobao.org/log-symbols/download/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" | 6106 | resolved "https://registry.npm.taobao.org/log-symbols/download/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" |
| @@ -5717,21 +6131,21 @@ log-update@^2.3.0: | @@ -5717,21 +6131,21 @@ log-update@^2.3.0: | ||
| 5717 | cli-cursor "^2.0.0" | 6131 | cli-cursor "^2.0.0" |
| 5718 | wrap-ansi "^3.0.1" | 6132 | wrap-ansi "^3.0.1" |
| 5719 | 6133 | ||
| 5720 | -logkitty@^0.6.0: | 6134 | +logkitty@^0.7.1: |
| 5721 | - version "0.6.1" | 6135 | + version "0.7.1" |
| 5722 | - resolved "https://registry.npm.taobao.org/logkitty/download/logkitty-0.6.1.tgz#fe29209669d261539cbd6bb998a136fc92a1a05c" | 6136 | + resolved "https://registry.npm.taobao.org/logkitty/download/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" |
| 5723 | - integrity sha1-/ikglmnSYVOcvWu5mKE2/JKhoFw= | 6137 | + integrity sha1-jo1i9Ahagm6NOJh3IlcCNOM8aqc= |
| 5724 | dependencies: | 6138 | dependencies: |
| 5725 | ansi-fragments "^0.2.1" | 6139 | ansi-fragments "^0.2.1" |
| 5726 | dayjs "^1.8.15" | 6140 | dayjs "^1.8.15" |
| 5727 | - yargs "^12.0.5" | 6141 | + yargs "^15.1.0" |
| 5728 | 6142 | ||
| 5729 | longest@^2.0.1: | 6143 | longest@^2.0.1: |
| 5730 | version "2.0.1" | 6144 | version "2.0.1" |
| 5731 | resolved "https://registry.npm.taobao.org/longest/download/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" | 6145 | resolved "https://registry.npm.taobao.org/longest/download/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" |
| 5732 | integrity sha1-eB4YMpaqlPbU2RbcM10NF676I/g= | 6146 | integrity sha1-eB4YMpaqlPbU2RbcM10NF676I/g= |
| 5733 | 6147 | ||
| 5734 | -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: | 6148 | +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: |
| 5735 | version "1.4.0" | 6149 | version "1.4.0" |
| 5736 | resolved "https://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" | 6150 | resolved "https://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" |
| 5737 | integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8= | 6151 | integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8= |
| @@ -5762,6 +6176,13 @@ make-dir@^2.0.0, make-dir@^2.1.0: | @@ -5762,6 +6176,13 @@ make-dir@^2.0.0, make-dir@^2.1.0: | ||
| 5762 | pify "^4.0.1" | 6176 | pify "^4.0.1" |
| 5763 | semver "^5.6.0" | 6177 | semver "^5.6.0" |
| 5764 | 6178 | ||
| 6179 | +make-dir@^3.0.0: | ||
| 6180 | + version "3.1.0" | ||
| 6181 | + resolved "https://registry.npm.taobao.org/make-dir/download/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" | ||
| 6182 | + integrity sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8= | ||
| 6183 | + dependencies: | ||
| 6184 | + semver "^6.0.0" | ||
| 6185 | + | ||
| 5765 | makeerror@1.0.x: | 6186 | makeerror@1.0.x: |
| 5766 | version "1.0.11" | 6187 | version "1.0.11" |
| 5767 | resolved "https://registry.npm.taobao.org/makeerror/download/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" | 6188 | resolved "https://registry.npm.taobao.org/makeerror/download/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" |
| @@ -5782,13 +6203,6 @@ mana@0.1.x: | @@ -5782,13 +6203,6 @@ mana@0.1.x: | ||
| 5782 | millisecond "0.1.x" | 6203 | millisecond "0.1.x" |
| 5783 | request "2.x.x" | 6204 | request "2.x.x" |
| 5784 | 6205 | ||
| 5785 | -map-age-cleaner@^0.1.1: | ||
| 5786 | - version "0.1.3" | ||
| 5787 | - resolved "https://registry.npm.taobao.org/map-age-cleaner/download/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" | ||
| 5788 | - integrity sha1-fVg6cwZDTAVf5HSw9FB45uG0uSo= | ||
| 5789 | - dependencies: | ||
| 5790 | - p-defer "^1.0.0" | ||
| 5791 | - | ||
| 5792 | map-cache@^0.2.2: | 6206 | map-cache@^0.2.2: |
| 5793 | version "0.2.2" | 6207 | version "0.2.2" |
| 5794 | resolved "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" | 6208 | resolved "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" |
| @@ -5816,15 +6230,6 @@ mdn-data@2.0.6: | @@ -5816,15 +6230,6 @@ mdn-data@2.0.6: | ||
| 5816 | resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" | 6230 | resolved "https://registry.npm.taobao.org/mdn-data/download/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" |
| 5817 | integrity sha1-hS3GD8ql2qLoz2yRicRA7T4EKXg= | 6231 | integrity sha1-hS3GD8ql2qLoz2yRicRA7T4EKXg= |
| 5818 | 6232 | ||
| 5819 | -mem@^4.0.0: | ||
| 5820 | - version "4.3.0" | ||
| 5821 | - resolved "https://registry.npm.taobao.org/mem/download/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" | ||
| 5822 | - integrity sha1-Rhr0l7xK4JYIzbLmDu+2m/90QXg= | ||
| 5823 | - dependencies: | ||
| 5824 | - map-age-cleaner "^0.1.1" | ||
| 5825 | - mimic-fn "^2.0.0" | ||
| 5826 | - p-is-promise "^2.0.0" | ||
| 5827 | - | ||
| 5828 | meow@5.0.0, meow@^5.0.0: | 6233 | meow@5.0.0, meow@^5.0.0: |
| 5829 | version "5.0.0" | 6234 | version "5.0.0" |
| 5830 | resolved "https://registry.npm.taobao.org/meow/download/meow-5.0.0.tgz?cache=0&sync_timestamp=1584668115630&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmeow%2Fdownload%2Fmeow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" | 6235 | resolved "https://registry.npm.taobao.org/meow/download/meow-5.0.0.tgz?cache=0&sync_timestamp=1584668115630&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmeow%2Fdownload%2Fmeow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" |
| @@ -5906,6 +6311,20 @@ metro-babel-register@0.58.0: | @@ -5906,6 +6311,20 @@ metro-babel-register@0.58.0: | ||
| 5906 | core-js "^2.2.2" | 6311 | core-js "^2.2.2" |
| 5907 | escape-string-regexp "^1.0.5" | 6312 | escape-string-regexp "^1.0.5" |
| 5908 | 6313 | ||
| 6314 | +metro-babel-register@0.59.0: | ||
| 6315 | + version "0.59.0" | ||
| 6316 | + resolved "https://registry.npm.taobao.org/metro-babel-register/download/metro-babel-register-0.59.0.tgz?cache=0&sync_timestamp=1595332096742&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-babel-register%2Fdownload%2Fmetro-babel-register-0.59.0.tgz#2bcff65641b36794cf083ba732fbc46cf870fb43" | ||
| 6317 | + integrity sha1-K8/2VkGzZ5TPCDunMvvEbPhw+0M= | ||
| 6318 | + dependencies: | ||
| 6319 | + "@babel/core" "^7.0.0" | ||
| 6320 | + "@babel/plugin-proposal-class-properties" "^7.0.0" | ||
| 6321 | + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" | ||
| 6322 | + "@babel/plugin-proposal-optional-chaining" "^7.0.0" | ||
| 6323 | + "@babel/plugin-transform-flow-strip-types" "^7.0.0" | ||
| 6324 | + "@babel/plugin-transform-modules-commonjs" "^7.0.0" | ||
| 6325 | + "@babel/register" "^7.0.0" | ||
| 6326 | + escape-string-regexp "^1.0.5" | ||
| 6327 | + | ||
| 5909 | metro-babel-transformer@0.58.0: | 6328 | metro-babel-transformer@0.58.0: |
| 5910 | version "0.58.0" | 6329 | version "0.58.0" |
| 5911 | resolved "https://registry.npm.taobao.org/metro-babel-transformer/download/metro-babel-transformer-0.58.0.tgz#317c83b863cceb0573943815f1711fbcbe69b106" | 6330 | resolved "https://registry.npm.taobao.org/metro-babel-transformer/download/metro-babel-transformer-0.58.0.tgz#317c83b863cceb0573943815f1711fbcbe69b106" |
| @@ -5914,6 +6333,14 @@ metro-babel-transformer@0.58.0: | @@ -5914,6 +6333,14 @@ metro-babel-transformer@0.58.0: | ||
| 5914 | "@babel/core" "^7.0.0" | 6333 | "@babel/core" "^7.0.0" |
| 5915 | metro-source-map "0.58.0" | 6334 | metro-source-map "0.58.0" |
| 5916 | 6335 | ||
| 6336 | +metro-babel-transformer@0.59.0: | ||
| 6337 | + version "0.59.0" | ||
| 6338 | + resolved "https://registry.npm.taobao.org/metro-babel-transformer/download/metro-babel-transformer-0.59.0.tgz?cache=0&sync_timestamp=1595332098205&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-babel-transformer%2Fdownload%2Fmetro-babel-transformer-0.59.0.tgz#dda99c75d831b00142c42c020c51c103b29f199d" | ||
| 6339 | + integrity sha1-3amcddgxsAFCxCwCDFHBA7KfGZ0= | ||
| 6340 | + dependencies: | ||
| 6341 | + "@babel/core" "^7.0.0" | ||
| 6342 | + metro-source-map "0.59.0" | ||
| 6343 | + | ||
| 5917 | metro-cache@0.58.0: | 6344 | metro-cache@0.58.0: |
| 5918 | version "0.58.0" | 6345 | version "0.58.0" |
| 5919 | resolved "https://registry.npm.taobao.org/metro-cache/download/metro-cache-0.58.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-cache%2Fdownload%2Fmetro-cache-0.58.0.tgz#630ea0a4626dfb9591c71fdb85dce14b5e9a04ec" | 6346 | resolved "https://registry.npm.taobao.org/metro-cache/download/metro-cache-0.58.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-cache%2Fdownload%2Fmetro-cache-0.58.0.tgz#630ea0a4626dfb9591c71fdb85dce14b5e9a04ec" |
| @@ -5964,7 +6391,7 @@ metro-minify-uglify@0.58.0: | @@ -5964,7 +6391,7 @@ metro-minify-uglify@0.58.0: | ||
| 5964 | dependencies: | 6391 | dependencies: |
| 5965 | uglify-es "^3.1.9" | 6392 | uglify-es "^3.1.9" |
| 5966 | 6393 | ||
| 5967 | -metro-react-native-babel-preset@0.58.0, metro-react-native-babel-preset@^0.58.0: | 6394 | +metro-react-native-babel-preset@0.58.0: |
| 5968 | version "0.58.0" | 6395 | version "0.58.0" |
| 5969 | resolved "https://registry.npm.taobao.org/metro-react-native-babel-preset/download/metro-react-native-babel-preset-0.58.0.tgz#18f48d33fe124280ffabc000ab8b42c488d762a2" | 6396 | resolved "https://registry.npm.taobao.org/metro-react-native-babel-preset/download/metro-react-native-babel-preset-0.58.0.tgz#18f48d33fe124280ffabc000ab8b42c488d762a2" |
| 5970 | integrity sha1-GPSNM/4SQoD/q8AAq4tCxIjXYqI= | 6397 | integrity sha1-GPSNM/4SQoD/q8AAq4tCxIjXYqI= |
| @@ -6005,7 +6432,62 @@ metro-react-native-babel-preset@0.58.0, metro-react-native-babel-preset@^0.58.0: | @@ -6005,7 +6432,62 @@ metro-react-native-babel-preset@0.58.0, metro-react-native-babel-preset@^0.58.0: | ||
| 6005 | "@babel/template" "^7.0.0" | 6432 | "@babel/template" "^7.0.0" |
| 6006 | react-refresh "^0.4.0" | 6433 | react-refresh "^0.4.0" |
| 6007 | 6434 | ||
| 6008 | -metro-react-native-babel-transformer@0.58.0, metro-react-native-babel-transformer@^0.58.0: | 6435 | +metro-react-native-babel-preset@0.59.0, metro-react-native-babel-preset@^0.59.0: |
| 6436 | + version "0.59.0" | ||
| 6437 | + resolved "https://registry.npm.taobao.org/metro-react-native-babel-preset/download/metro-react-native-babel-preset-0.59.0.tgz#20e020bc6ac9849e1477de1333d303ed42aba225" | ||
| 6438 | + integrity sha1-IOAgvGrJhJ4Ud94TM9MD7UKroiU= | ||
| 6439 | + dependencies: | ||
| 6440 | + "@babel/plugin-proposal-class-properties" "^7.0.0" | ||
| 6441 | + "@babel/plugin-proposal-export-default-from" "^7.0.0" | ||
| 6442 | + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0" | ||
| 6443 | + "@babel/plugin-proposal-object-rest-spread" "^7.0.0" | ||
| 6444 | + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" | ||
| 6445 | + "@babel/plugin-proposal-optional-chaining" "^7.0.0" | ||
| 6446 | + "@babel/plugin-syntax-dynamic-import" "^7.0.0" | ||
| 6447 | + "@babel/plugin-syntax-export-default-from" "^7.0.0" | ||
| 6448 | + "@babel/plugin-syntax-flow" "^7.2.0" | ||
| 6449 | + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" | ||
| 6450 | + "@babel/plugin-syntax-optional-chaining" "^7.0.0" | ||
| 6451 | + "@babel/plugin-transform-arrow-functions" "^7.0.0" | ||
| 6452 | + "@babel/plugin-transform-block-scoping" "^7.0.0" | ||
| 6453 | + "@babel/plugin-transform-classes" "^7.0.0" | ||
| 6454 | + "@babel/plugin-transform-computed-properties" "^7.0.0" | ||
| 6455 | + "@babel/plugin-transform-destructuring" "^7.0.0" | ||
| 6456 | + "@babel/plugin-transform-exponentiation-operator" "^7.0.0" | ||
| 6457 | + "@babel/plugin-transform-flow-strip-types" "^7.0.0" | ||
| 6458 | + "@babel/plugin-transform-for-of" "^7.0.0" | ||
| 6459 | + "@babel/plugin-transform-function-name" "^7.0.0" | ||
| 6460 | + "@babel/plugin-transform-literals" "^7.0.0" | ||
| 6461 | + "@babel/plugin-transform-modules-commonjs" "^7.0.0" | ||
| 6462 | + "@babel/plugin-transform-object-assign" "^7.0.0" | ||
| 6463 | + "@babel/plugin-transform-parameters" "^7.0.0" | ||
| 6464 | + "@babel/plugin-transform-react-display-name" "^7.0.0" | ||
| 6465 | + "@babel/plugin-transform-react-jsx" "^7.0.0" | ||
| 6466 | + "@babel/plugin-transform-react-jsx-self" "^7.0.0" | ||
| 6467 | + "@babel/plugin-transform-react-jsx-source" "^7.0.0" | ||
| 6468 | + "@babel/plugin-transform-regenerator" "^7.0.0" | ||
| 6469 | + "@babel/plugin-transform-runtime" "^7.0.0" | ||
| 6470 | + "@babel/plugin-transform-shorthand-properties" "^7.0.0" | ||
| 6471 | + "@babel/plugin-transform-spread" "^7.0.0" | ||
| 6472 | + "@babel/plugin-transform-sticky-regex" "^7.0.0" | ||
| 6473 | + "@babel/plugin-transform-template-literals" "^7.0.0" | ||
| 6474 | + "@babel/plugin-transform-typescript" "^7.5.0" | ||
| 6475 | + "@babel/plugin-transform-unicode-regex" "^7.0.0" | ||
| 6476 | + "@babel/template" "^7.0.0" | ||
| 6477 | + react-refresh "^0.4.0" | ||
| 6478 | + | ||
| 6479 | +metro-react-native-babel-transformer@0.59.0: | ||
| 6480 | + version "0.59.0" | ||
| 6481 | + resolved "https://registry.npm.taobao.org/metro-react-native-babel-transformer/download/metro-react-native-babel-transformer-0.59.0.tgz?cache=0&sync_timestamp=1595332093291&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-react-native-babel-transformer%2Fdownload%2Fmetro-react-native-babel-transformer-0.59.0.tgz#9b3dfd6ad35c6ef37fc4ce4d20a2eb67fabbb4be" | ||
| 6482 | + integrity sha1-mz39atNcbvN/xM5NIKLrZ/q7tL4= | ||
| 6483 | + dependencies: | ||
| 6484 | + "@babel/core" "^7.0.0" | ||
| 6485 | + babel-preset-fbjs "^3.3.0" | ||
| 6486 | + metro-babel-transformer "0.59.0" | ||
| 6487 | + metro-react-native-babel-preset "0.59.0" | ||
| 6488 | + metro-source-map "0.59.0" | ||
| 6489 | + | ||
| 6490 | +metro-react-native-babel-transformer@^0.58.0: | ||
| 6009 | version "0.58.0" | 6491 | version "0.58.0" |
| 6010 | resolved "https://registry.npm.taobao.org/metro-react-native-babel-transformer/download/metro-react-native-babel-transformer-0.58.0.tgz#5da0e5a1b83c01d11626905fa59f34fda53a21a5" | 6492 | resolved "https://registry.npm.taobao.org/metro-react-native-babel-transformer/download/metro-react-native-babel-transformer-0.58.0.tgz#5da0e5a1b83c01d11626905fa59f34fda53a21a5" |
| 6011 | integrity sha1-XaDlobg8AdEWJpBfpZ80/aU6IaU= | 6493 | integrity sha1-XaDlobg8AdEWJpBfpZ80/aU6IaU= |
| @@ -6016,7 +6498,7 @@ metro-react-native-babel-transformer@0.58.0, metro-react-native-babel-transforme | @@ -6016,7 +6498,7 @@ metro-react-native-babel-transformer@0.58.0, metro-react-native-babel-transforme | ||
| 6016 | metro-react-native-babel-preset "0.58.0" | 6498 | metro-react-native-babel-preset "0.58.0" |
| 6017 | metro-source-map "0.58.0" | 6499 | metro-source-map "0.58.0" |
| 6018 | 6500 | ||
| 6019 | -metro-resolver@0.58.0: | 6501 | +metro-resolver@0.58.0, metro-resolver@^0.58.0: |
| 6020 | version "0.58.0" | 6502 | version "0.58.0" |
| 6021 | resolved "https://registry.npm.taobao.org/metro-resolver/download/metro-resolver-0.58.0.tgz?cache=0&sync_timestamp=1584611028590&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-resolver%2Fdownload%2Fmetro-resolver-0.58.0.tgz#4d03edc52e2e25d45f16688adf3b3f268ea60df9" | 6503 | resolved "https://registry.npm.taobao.org/metro-resolver/download/metro-resolver-0.58.0.tgz?cache=0&sync_timestamp=1584611028590&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-resolver%2Fdownload%2Fmetro-resolver-0.58.0.tgz#4d03edc52e2e25d45f16688adf3b3f268ea60df9" |
| 6022 | integrity sha1-TQPtxS4uJdRfFmiK3zs/Jo6mDfk= | 6504 | integrity sha1-TQPtxS4uJdRfFmiK3zs/Jo6mDfk= |
| @@ -6036,6 +6518,19 @@ metro-source-map@0.58.0: | @@ -6036,6 +6518,19 @@ metro-source-map@0.58.0: | ||
| 6036 | source-map "^0.5.6" | 6518 | source-map "^0.5.6" |
| 6037 | vlq "^1.0.0" | 6519 | vlq "^1.0.0" |
| 6038 | 6520 | ||
| 6521 | +metro-source-map@0.59.0: | ||
| 6522 | + version "0.59.0" | ||
| 6523 | + resolved "https://registry.npm.taobao.org/metro-source-map/download/metro-source-map-0.59.0.tgz?cache=0&sync_timestamp=1595332093778&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-source-map%2Fdownload%2Fmetro-source-map-0.59.0.tgz#e9beb9fc51bfb4e060f95820cf1508fc122d23f7" | ||
| 6524 | + integrity sha1-6b65/FG/tOBg+VggzxUI/BItI/c= | ||
| 6525 | + dependencies: | ||
| 6526 | + "@babel/traverse" "^7.0.0" | ||
| 6527 | + "@babel/types" "^7.0.0" | ||
| 6528 | + invariant "^2.2.4" | ||
| 6529 | + metro-symbolicate "0.59.0" | ||
| 6530 | + ob1 "0.59.0" | ||
| 6531 | + source-map "^0.5.6" | ||
| 6532 | + vlq "^1.0.0" | ||
| 6533 | + | ||
| 6039 | metro-symbolicate@0.58.0: | 6534 | metro-symbolicate@0.58.0: |
| 6040 | version "0.58.0" | 6535 | version "0.58.0" |
| 6041 | resolved "https://registry.npm.taobao.org/metro-symbolicate/download/metro-symbolicate-0.58.0.tgz?cache=0&sync_timestamp=1584612033857&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-symbolicate%2Fdownload%2Fmetro-symbolicate-0.58.0.tgz#ba9fd52549c41fc1b656adaad7c8875726dd5abe" | 6536 | resolved "https://registry.npm.taobao.org/metro-symbolicate/download/metro-symbolicate-0.58.0.tgz?cache=0&sync_timestamp=1584612033857&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro-symbolicate%2Fdownload%2Fmetro-symbolicate-0.58.0.tgz#ba9fd52549c41fc1b656adaad7c8875726dd5abe" |
| @@ -6047,6 +6542,17 @@ metro-symbolicate@0.58.0: | @@ -6047,6 +6542,17 @@ metro-symbolicate@0.58.0: | ||
| 6047 | through2 "^2.0.1" | 6542 | through2 "^2.0.1" |
| 6048 | vlq "^1.0.0" | 6543 | vlq "^1.0.0" |
| 6049 | 6544 | ||
| 6545 | +metro-symbolicate@0.59.0: | ||
| 6546 | + version "0.59.0" | ||
| 6547 | + resolved "https://registry.npm.taobao.org/metro-symbolicate/download/metro-symbolicate-0.59.0.tgz#fc7f93957a42b02c2bfc57ed1e8f393f5f636a54" | ||
| 6548 | + integrity sha1-/H+TlXpCsCwr/FftHo85P19jalQ= | ||
| 6549 | + dependencies: | ||
| 6550 | + invariant "^2.2.4" | ||
| 6551 | + metro-source-map "0.59.0" | ||
| 6552 | + source-map "^0.5.6" | ||
| 6553 | + through2 "^2.0.1" | ||
| 6554 | + vlq "^1.0.0" | ||
| 6555 | + | ||
| 6050 | metro@0.58.0, metro@^0.58.0: | 6556 | metro@0.58.0, metro@^0.58.0: |
| 6051 | version "0.58.0" | 6557 | version "0.58.0" |
| 6052 | resolved "https://registry.npm.taobao.org/metro/download/metro-0.58.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro%2Fdownload%2Fmetro-0.58.0.tgz#c037318c112f80dc96199780c8b401ab72cfd142" | 6558 | resolved "https://registry.npm.taobao.org/metro/download/metro-0.58.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmetro%2Fdownload%2Fmetro-0.58.0.tgz#c037318c112f80dc96199780c8b401ab72cfd142" |
| @@ -6180,7 +6686,7 @@ mimic-fn@^1.0.0: | @@ -6180,7 +6686,7 @@ mimic-fn@^1.0.0: | ||
| 6180 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" | 6686 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" |
| 6181 | integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI= | 6687 | integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI= |
| 6182 | 6688 | ||
| 6183 | -mimic-fn@^2.0.0, mimic-fn@^2.1.0: | 6689 | +mimic-fn@^2.1.0: |
| 6184 | version "2.1.0" | 6690 | version "2.1.0" |
| 6185 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" | 6691 | resolved "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" |
| 6186 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= | 6692 | integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= |
| @@ -6425,6 +6931,11 @@ ob1@0.58.0: | @@ -6425,6 +6931,11 @@ ob1@0.58.0: | ||
| 6425 | resolved "https://registry.npm.taobao.org/ob1/download/ob1-0.58.0.tgz#484a1e9a63a8b79d9ea6f3a83b2a42110faac973" | 6931 | resolved "https://registry.npm.taobao.org/ob1/download/ob1-0.58.0.tgz#484a1e9a63a8b79d9ea6f3a83b2a42110faac973" |
| 6426 | integrity sha1-SEoemmOot52epvOoOypCEQ+qyXM= | 6932 | integrity sha1-SEoemmOot52epvOoOypCEQ+qyXM= |
| 6427 | 6933 | ||
| 6934 | +ob1@0.59.0: | ||
| 6935 | + version "0.59.0" | ||
| 6936 | + resolved "https://registry.npm.taobao.org/ob1/download/ob1-0.59.0.tgz?cache=0&sync_timestamp=1595332183661&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fob1%2Fdownload%2Fob1-0.59.0.tgz#ee103619ef5cb697f2866e3577da6f0ecd565a36" | ||
| 6937 | + integrity sha1-7hA2Ge9ctpfyhm41d9pvDs1WWjY= | ||
| 6938 | + | ||
| 6428 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: | 6939 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: |
| 6429 | version "4.1.1" | 6940 | version "4.1.1" |
| 6430 | resolved "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1571657171505&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | 6941 | resolved "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz?cache=0&sync_timestamp=1571657171505&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fobject-assign%2Fdownload%2Fobject-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" |
| @@ -6585,25 +7096,11 @@ ora@^3.4.0: | @@ -6585,25 +7096,11 @@ ora@^3.4.0: | ||
| 6585 | strip-ansi "^5.2.0" | 7096 | strip-ansi "^5.2.0" |
| 6586 | wcwidth "^1.0.1" | 7097 | wcwidth "^1.0.1" |
| 6587 | 7098 | ||
| 6588 | -os-locale@^3.0.0: | ||
| 6589 | - version "3.1.0" | ||
| 6590 | - resolved "https://registry.npm.taobao.org/os-locale/download/os-locale-3.1.0.tgz?cache=0&sync_timestamp=1584865515583&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fos-locale%2Fdownload%2Fos-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" | ||
| 6591 | - integrity sha1-qAKm7hfyTBBIOrmTVxnO9O0Wvxo= | ||
| 6592 | - dependencies: | ||
| 6593 | - execa "^1.0.0" | ||
| 6594 | - lcid "^2.0.0" | ||
| 6595 | - mem "^4.0.0" | ||
| 6596 | - | ||
| 6597 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: | 7099 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: |
| 6598 | version "1.0.2" | 7100 | version "1.0.2" |
| 6599 | resolved "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | 7101 | resolved "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" |
| 6600 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | 7102 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= |
| 6601 | 7103 | ||
| 6602 | -p-defer@^1.0.0: | ||
| 6603 | - version "1.0.0" | ||
| 6604 | - resolved "https://registry.npm.taobao.org/p-defer/download/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" | ||
| 6605 | - integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= | ||
| 6606 | - | ||
| 6607 | p-each-series@^1.0.0: | 7104 | p-each-series@^1.0.0: |
| 6608 | version "1.0.0" | 7105 | version "1.0.0" |
| 6609 | resolved "https://registry.npm.taobao.org/p-each-series/download/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" | 7106 | resolved "https://registry.npm.taobao.org/p-each-series/download/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" |
| @@ -6621,11 +7118,6 @@ p-finally@^2.0.0: | @@ -6621,11 +7118,6 @@ p-finally@^2.0.0: | ||
| 6621 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" | 7118 | resolved "https://registry.npm.taobao.org/p-finally/download/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" |
| 6622 | integrity sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE= | 7119 | integrity sha1-vW/KqcVZoJa2gIBvTWV7Pw8kBWE= |
| 6623 | 7120 | ||
| 6624 | -p-is-promise@^2.0.0: | ||
| 6625 | - version "2.1.0" | ||
| 6626 | - resolved "https://registry.npm.taobao.org/p-is-promise/download/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" | ||
| 6627 | - integrity sha1-kYzrrqJIpiz3/6uOO8qMX4gvxC4= | ||
| 6628 | - | ||
| 6629 | p-limit@^1.1.0: | 7121 | p-limit@^1.1.0: |
| 6630 | version "1.3.0" | 7122 | version "1.3.0" |
| 6631 | resolved "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1586101408834&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" | 7123 | resolved "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz?cache=0&sync_timestamp=1586101408834&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fp-limit%2Fdownload%2Fp-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" |
| @@ -6811,7 +7303,7 @@ performance-now@^2.1.0: | @@ -6811,7 +7303,7 @@ performance-now@^2.1.0: | ||
| 6811 | resolved "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" | 7303 | resolved "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" |
| 6812 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= | 7304 | integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= |
| 6813 | 7305 | ||
| 6814 | -picomatch@^2.0.5: | 7306 | +picomatch@^2.0.4, picomatch@^2.0.5: |
| 6815 | version "2.2.2" | 7307 | version "2.2.2" |
| 6816 | resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.2.2.tgz?cache=0&sync_timestamp=1584790434095&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpicomatch%2Fdownload%2Fpicomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" | 7308 | resolved "https://registry.npm.taobao.org/picomatch/download/picomatch-2.2.2.tgz?cache=0&sync_timestamp=1584790434095&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpicomatch%2Fdownload%2Fpicomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" |
| 6817 | integrity sha1-IfMz6ba46v8CRo9RRupAbTRfTa0= | 7309 | integrity sha1-IfMz6ba46v8CRo9RRupAbTRfTa0= |
| @@ -6940,6 +7432,16 @@ pretty-format@^24.7.0, pretty-format@^24.9.0: | @@ -6940,6 +7432,16 @@ pretty-format@^24.7.0, pretty-format@^24.9.0: | ||
| 6940 | ansi-styles "^3.2.0" | 7432 | ansi-styles "^3.2.0" |
| 6941 | react-is "^16.8.4" | 7433 | react-is "^16.8.4" |
| 6942 | 7434 | ||
| 7435 | +pretty-format@^25.1.0: | ||
| 7436 | + version "25.5.0" | ||
| 7437 | + resolved "https://registry.npm.taobao.org/pretty-format/download/pretty-format-25.5.0.tgz?cache=0&sync_timestamp=1596102212223&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpretty-format%2Fdownload%2Fpretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" | ||
| 7438 | + integrity sha1-eHPB13T2gsNLjUi2dDor8qxVeRo= | ||
| 7439 | + dependencies: | ||
| 7440 | + "@jest/types" "^25.5.0" | ||
| 7441 | + ansi-regex "^5.0.0" | ||
| 7442 | + ansi-styles "^4.0.0" | ||
| 7443 | + react-is "^16.12.0" | ||
| 7444 | + | ||
| 6943 | pretty-format@^25.2.0: | 7445 | pretty-format@^25.2.0: |
| 6944 | version "25.2.6" | 7446 | version "25.2.6" |
| 6945 | resolved "https://registry.npm.taobao.org/pretty-format/download/pretty-format-25.2.6.tgz?cache=0&sync_timestamp=1585823722031&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpretty-format%2Fdownload%2Fpretty-format-25.2.6.tgz#542a1c418d019bbf1cca2e3620443bc1323cb8d7" | 7447 | resolved "https://registry.npm.taobao.org/pretty-format/download/pretty-format-25.2.6.tgz?cache=0&sync_timestamp=1585823722031&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpretty-format%2Fdownload%2Fpretty-format-25.2.6.tgz#542a1c418d019bbf1cca2e3620443bc1323cb8d7" |
| @@ -6972,6 +7474,13 @@ promise@^7.1.1: | @@ -6972,6 +7474,13 @@ promise@^7.1.1: | ||
| 6972 | dependencies: | 7474 | dependencies: |
| 6973 | asap "~2.0.3" | 7475 | asap "~2.0.3" |
| 6974 | 7476 | ||
| 7477 | +promise@^8.0.3: | ||
| 7478 | + version "8.1.0" | ||
| 7479 | + resolved "https://registry.npm.taobao.org/promise/download/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e" | ||
| 7480 | + integrity sha1-aXwlw9/nQ13Xn81Yw4oTWIjq8F4= | ||
| 7481 | + dependencies: | ||
| 7482 | + asap "~2.0.6" | ||
| 7483 | + | ||
| 6975 | prompts@^2.0.1, prompts@^2.3.0: | 7484 | prompts@^2.0.1, prompts@^2.3.0: |
| 6976 | version "2.3.2" | 7485 | version "2.3.2" |
| 6977 | resolved "https://registry.npm.taobao.org/prompts/download/prompts-2.3.2.tgz?cache=0&sync_timestamp=1584535655273&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fprompts%2Fdownload%2Fprompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" | 7486 | resolved "https://registry.npm.taobao.org/prompts/download/prompts-2.3.2.tgz?cache=0&sync_timestamp=1584535655273&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fprompts%2Fdownload%2Fprompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" |
| @@ -7059,10 +7568,10 @@ range-parser@~1.2.1: | @@ -7059,10 +7568,10 @@ range-parser@~1.2.1: | ||
| 7059 | resolved "https://registry.npm.taobao.org/range-parser/download/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" | 7568 | resolved "https://registry.npm.taobao.org/range-parser/download/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" |
| 7060 | integrity sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE= | 7569 | integrity sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE= |
| 7061 | 7570 | ||
| 7062 | -react-devtools-core@^4.0.6: | 7571 | +react-devtools-core@^4.6.0: |
| 7063 | - version "4.6.0" | 7572 | + version "4.8.2" |
| 7064 | - resolved "https://registry.npm.taobao.org/react-devtools-core/download/react-devtools-core-4.6.0.tgz?cache=0&sync_timestamp=1585243878502&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact-devtools-core%2Fdownload%2Freact-devtools-core-4.6.0.tgz#2443b3c6fac78b801702af188abc6d83d56224e6" | 7573 | + resolved "https://registry.npm.taobao.org/react-devtools-core/download/react-devtools-core-4.8.2.tgz#4465f2e8de7795564aa20f28b2f3a9737586db23" |
| 7065 | - integrity sha1-JEOzxvrHi4AXAq8Yirxtg9ViJOY= | 7574 | + integrity sha1-RGXy6N53lVZKog8osvOpc3WG2yM= |
| 7066 | dependencies: | 7575 | dependencies: |
| 7067 | shell-quote "^1.6.1" | 7576 | shell-quote "^1.6.1" |
| 7068 | ws "^7" | 7577 | ws "^7" |
| @@ -7222,39 +7731,35 @@ react-native-webview@9.1.1: | @@ -7222,39 +7731,35 @@ react-native-webview@9.1.1: | ||
| 7222 | invariant "2.2.4" | 7731 | invariant "2.2.4" |
| 7223 | rnpm-plugin-windows "^0.5.1-0" | 7732 | rnpm-plugin-windows "^0.5.1-0" |
| 7224 | 7733 | ||
| 7225 | -react-native@0.62.1: | 7734 | +react-native@0.63.2: |
| 7226 | - version "0.62.1" | 7735 | + version "0.63.2" |
| 7227 | - resolved "https://registry.npm.taobao.org/react-native/download/react-native-0.62.1.tgz#fd0324bedf4c3237c928de582c29403f1e46ea80" | 7736 | + resolved "https://registry.npm.taobao.org/react-native/download/react-native-0.63.2.tgz?cache=0&sync_timestamp=1596763737221&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact-native%2Fdownload%2Freact-native-0.63.2.tgz#eaebf3430577b37fbd66ef228a86b3408259ef8e" |
| 7228 | - integrity sha1-/QMkvt9MMjfJKN5YLClAPx5G6oA= | 7737 | + integrity sha1-6uvzQwV3s3+9Zu8iioazQIJZ744= |
| 7229 | dependencies: | 7738 | dependencies: |
| 7230 | "@babel/runtime" "^7.0.0" | 7739 | "@babel/runtime" "^7.0.0" |
| 7231 | - "@react-native-community/cli" "^4.5.1" | 7740 | + "@react-native-community/cli" "^4.7.0" |
| 7232 | - "@react-native-community/cli-platform-android" "^4.5.1" | 7741 | + "@react-native-community/cli-platform-android" "^4.7.0" |
| 7233 | - "@react-native-community/cli-platform-ios" "^4.5.0" | 7742 | + "@react-native-community/cli-platform-ios" "^4.7.0" |
| 7234 | abort-controller "^3.0.0" | 7743 | abort-controller "^3.0.0" |
| 7235 | anser "^1.4.9" | 7744 | anser "^1.4.9" |
| 7236 | base64-js "^1.1.2" | 7745 | base64-js "^1.1.2" |
| 7237 | - connect "^3.6.5" | ||
| 7238 | - create-react-class "^15.6.3" | ||
| 7239 | - escape-string-regexp "^1.0.5" | ||
| 7240 | - eslint-plugin-relay "1.4.1" | ||
| 7241 | event-target-shim "^5.0.1" | 7746 | event-target-shim "^5.0.1" |
| 7242 | fbjs "^1.0.0" | 7747 | fbjs "^1.0.0" |
| 7243 | fbjs-scripts "^1.1.0" | 7748 | fbjs-scripts "^1.1.0" |
| 7244 | - hermes-engine "~0.4.0" | 7749 | + hermes-engine "~0.5.0" |
| 7245 | invariant "^2.2.4" | 7750 | invariant "^2.2.4" |
| 7246 | jsc-android "^245459.0.0" | 7751 | jsc-android "^245459.0.0" |
| 7247 | - metro-babel-register "0.58.0" | 7752 | + metro-babel-register "0.59.0" |
| 7248 | - metro-react-native-babel-transformer "0.58.0" | 7753 | + metro-react-native-babel-transformer "0.59.0" |
| 7249 | - metro-source-map "0.58.0" | 7754 | + metro-source-map "0.59.0" |
| 7250 | nullthrows "^1.1.1" | 7755 | nullthrows "^1.1.1" |
| 7251 | - pretty-format "^24.7.0" | 7756 | + pretty-format "^24.9.0" |
| 7252 | - promise "^7.1.1" | 7757 | + promise "^8.0.3" |
| 7253 | prop-types "^15.7.2" | 7758 | prop-types "^15.7.2" |
| 7254 | - react-devtools-core "^4.0.6" | 7759 | + react-devtools-core "^4.6.0" |
| 7255 | react-refresh "^0.4.0" | 7760 | react-refresh "^0.4.0" |
| 7256 | regenerator-runtime "^0.13.2" | 7761 | regenerator-runtime "^0.13.2" |
| 7257 | - scheduler "0.17.0" | 7762 | + scheduler "0.19.1" |
| 7258 | stacktrace-parser "^0.1.3" | 7763 | stacktrace-parser "^0.1.3" |
| 7259 | use-subscription "^1.0.0" | 7764 | use-subscription "^1.0.0" |
| 7260 | whatwg-fetch "^3.0.0" | 7765 | whatwg-fetch "^3.0.0" |
| @@ -7275,20 +7780,20 @@ react-refresh@^0.4.0: | @@ -7275,20 +7780,20 @@ react-refresh@^0.4.0: | ||
| 7275 | resolved "https://registry.npm.taobao.org/react-refresh/download/react-refresh-0.4.2.tgz#54a277a6caaac2803d88f1d6f13c1dcfbd81e334" | 7780 | resolved "https://registry.npm.taobao.org/react-refresh/download/react-refresh-0.4.2.tgz#54a277a6caaac2803d88f1d6f13c1dcfbd81e334" |
| 7276 | integrity sha1-VKJ3psqqwoA9iPHW8Twdz72B4zQ= | 7781 | integrity sha1-VKJ3psqqwoA9iPHW8Twdz72B4zQ= |
| 7277 | 7782 | ||
| 7278 | -react-test-renderer@16.11.0: | 7783 | +react-test-renderer@16.13.1: |
| 7279 | - version "16.11.0" | 7784 | + version "16.13.1" |
| 7280 | - resolved "https://registry.npm.taobao.org/react-test-renderer/download/react-test-renderer-16.11.0.tgz#72574566496462c808ac449b0287a4c0a1a7d8f8" | 7785 | + resolved "https://registry.npm.taobao.org/react-test-renderer/download/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1" |
| 7281 | - integrity sha1-cldFZklkYsgIrESbAoekwKGn2Pg= | 7786 | + integrity sha1-3iXqNY2QEmBt5R4BLZdC5/Deq8E= |
| 7282 | dependencies: | 7787 | dependencies: |
| 7283 | object-assign "^4.1.1" | 7788 | object-assign "^4.1.1" |
| 7284 | prop-types "^15.6.2" | 7789 | prop-types "^15.6.2" |
| 7285 | react-is "^16.8.6" | 7790 | react-is "^16.8.6" |
| 7286 | - scheduler "^0.17.0" | 7791 | + scheduler "^0.19.1" |
| 7287 | 7792 | ||
| 7288 | -react@16.11.0: | 7793 | +react@16.13.1: |
| 7289 | - version "16.11.0" | 7794 | + version "16.13.1" |
| 7290 | - resolved "https://registry.npm.taobao.org/react/download/react-16.11.0.tgz#d294545fe62299ccee83363599bf904e4a07fdbb" | 7795 | + resolved "https://registry.npm.taobao.org/react/download/react-16.13.1.tgz?cache=0&sync_timestamp=1596207140411&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact%2Fdownload%2Freact-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" |
| 7291 | - integrity sha1-0pRUX+YimczugzY1mb+QTkoH/bs= | 7796 | + integrity sha1-LoGIIvGpdDEiwGPWQQ2FweOv5I4= |
| 7292 | dependencies: | 7797 | dependencies: |
| 7293 | loose-envify "^1.1.0" | 7798 | loose-envify "^1.1.0" |
| 7294 | object-assign "^4.1.1" | 7799 | object-assign "^4.1.1" |
| @@ -7365,6 +7870,11 @@ realpath-native@^1.1.0: | @@ -7365,6 +7870,11 @@ realpath-native@^1.1.0: | ||
| 7365 | dependencies: | 7870 | dependencies: |
| 7366 | util.promisify "^1.0.0" | 7871 | util.promisify "^1.0.0" |
| 7367 | 7872 | ||
| 7873 | +realpath-native@^2.0.0: | ||
| 7874 | + version "2.0.0" | ||
| 7875 | + resolved "https://registry.npm.taobao.org/realpath-native/download/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" | ||
| 7876 | + integrity sha1-c3esQptuH9WZ3DjQjtlC0Ne+uGY= | ||
| 7877 | + | ||
| 7368 | rechoir@^0.6.2: | 7878 | rechoir@^0.6.2: |
| 7369 | version "0.6.2" | 7879 | version "0.6.2" |
| 7370 | resolved "https://registry.npm.taobao.org/rechoir/download/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" | 7880 | resolved "https://registry.npm.taobao.org/rechoir/download/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" |
| @@ -7572,11 +8082,6 @@ require-directory@^2.1.1: | @@ -7572,11 +8082,6 @@ require-directory@^2.1.1: | ||
| 7572 | resolved "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" | 8082 | resolved "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" |
| 7573 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= | 8083 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= |
| 7574 | 8084 | ||
| 7575 | -require-main-filename@^1.0.1: | ||
| 7576 | - version "1.0.1" | ||
| 7577 | - resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" | ||
| 7578 | - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= | ||
| 7579 | - | ||
| 7580 | require-main-filename@^2.0.0: | 8085 | require-main-filename@^2.0.0: |
| 7581 | version "2.0.0" | 8086 | version "2.0.0" |
| 7582 | resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" | 8087 | resolved "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" |
| @@ -7780,10 +8285,10 @@ sax@^1.2.1, sax@^1.2.4: | @@ -7780,10 +8285,10 @@ sax@^1.2.1, sax@^1.2.4: | ||
| 7780 | resolved "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | 8285 | resolved "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" |
| 7781 | integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk= | 8286 | integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk= |
| 7782 | 8287 | ||
| 7783 | -scheduler@0.17.0, scheduler@^0.17.0: | 8288 | +scheduler@0.19.1, scheduler@^0.19.1: |
| 7784 | - version "0.17.0" | 8289 | + version "0.19.1" |
| 7785 | - resolved "https://registry.npm.taobao.org/scheduler/download/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" | 8290 | + resolved "https://registry.npm.taobao.org/scheduler/download/scheduler-0.19.1.tgz?cache=0&sync_timestamp=1596208813568&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fscheduler%2Fdownload%2Fscheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" |
| 7786 | - integrity sha1-fJxnPk7HgfrIU5J5FtHEJrbz3f4= | 8291 | + integrity sha1-Tz4u0sGn1laB9MhU+oxaHMtA8ZY= |
| 7787 | dependencies: | 8292 | dependencies: |
| 7788 | loose-envify "^1.1.0" | 8293 | loose-envify "^1.1.0" |
| 7789 | object-assign "^4.1.1" | 8294 | object-assign "^4.1.1" |
| @@ -8212,7 +8717,7 @@ string-width@^1.0.1: | @@ -8212,7 +8717,7 @@ string-width@^1.0.1: | ||
| 8212 | is-fullwidth-code-point "^1.0.0" | 8717 | is-fullwidth-code-point "^1.0.0" |
| 8213 | strip-ansi "^3.0.0" | 8718 | strip-ansi "^3.0.0" |
| 8214 | 8719 | ||
| 8215 | -string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: | 8720 | +string-width@^2.1.0, string-width@^2.1.1: |
| 8216 | version "2.1.1" | 8721 | version "2.1.1" |
| 8217 | resolved "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" | 8722 | resolved "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" |
| 8218 | integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= | 8723 | integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4= |
| @@ -8413,7 +8918,7 @@ supports-color@^6.1.0: | @@ -8413,7 +8918,7 @@ supports-color@^6.1.0: | ||
| 8413 | dependencies: | 8918 | dependencies: |
| 8414 | has-flag "^3.0.0" | 8919 | has-flag "^3.0.0" |
| 8415 | 8920 | ||
| 8416 | -supports-color@^7.1.0: | 8921 | +supports-color@^7.0.0, supports-color@^7.1.0: |
| 8417 | version "7.1.0" | 8922 | version "7.1.0" |
| 8418 | resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" | 8923 | resolved "https://registry.npm.taobao.org/supports-color/download/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" |
| 8419 | integrity sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E= | 8924 | integrity sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E= |
| @@ -8463,6 +8968,15 @@ test-exclude@^5.2.3: | @@ -8463,6 +8968,15 @@ test-exclude@^5.2.3: | ||
| 8463 | read-pkg-up "^4.0.0" | 8968 | read-pkg-up "^4.0.0" |
| 8464 | require-main-filename "^2.0.0" | 8969 | require-main-filename "^2.0.0" |
| 8465 | 8970 | ||
| 8971 | +test-exclude@^6.0.0: | ||
| 8972 | + version "6.0.0" | ||
| 8973 | + resolved "https://registry.npm.taobao.org/test-exclude/download/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" | ||
| 8974 | + integrity sha1-BKhphmHYBepvopO2y55jrARO8V4= | ||
| 8975 | + dependencies: | ||
| 8976 | + "@istanbuljs/schema" "^0.1.2" | ||
| 8977 | + glob "^7.1.4" | ||
| 8978 | + minimatch "^3.0.4" | ||
| 8979 | + | ||
| 8466 | text-extensions@^1.0.0: | 8980 | text-extensions@^1.0.0: |
| 8467 | version "1.9.0" | 8981 | version "1.9.0" |
| 8468 | resolved "https://registry.npm.taobao.org/text-extensions/download/text-extensions-1.9.0.tgz?cache=0&sync_timestamp=1581859528571&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftext-extensions%2Fdownload%2Ftext-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" | 8982 | resolved "https://registry.npm.taobao.org/text-extensions/download/text-extensions-1.9.0.tgz?cache=0&sync_timestamp=1581859528571&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftext-extensions%2Fdownload%2Ftext-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" |
| @@ -8643,6 +9157,13 @@ type-fest@^0.8.1: | @@ -8643,6 +9157,13 @@ type-fest@^0.8.1: | ||
| 8643 | resolved "https://registry.npm.taobao.org/type-fest/download/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" | 9157 | resolved "https://registry.npm.taobao.org/type-fest/download/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" |
| 8644 | integrity sha1-CeJJ696FHTseSNJ8EFREZn8XuD0= | 9158 | integrity sha1-CeJJ696FHTseSNJ8EFREZn8XuD0= |
| 8645 | 9159 | ||
| 9160 | +typedarray-to-buffer@^3.1.5: | ||
| 9161 | + version "3.1.5" | ||
| 9162 | + resolved "https://registry.npm.taobao.org/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" | ||
| 9163 | + integrity sha1-qX7nqf9CaRufeD/xvFES/j/KkIA= | ||
| 9164 | + dependencies: | ||
| 9165 | + is-typedarray "^1.0.0" | ||
| 9166 | + | ||
| 8646 | typedarray@^0.0.6: | 9167 | typedarray@^0.0.6: |
| 8647 | version "0.0.6" | 9168 | version "0.0.6" |
| 8648 | resolved "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" | 9169 | resolved "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" |
| @@ -8907,9 +9428,9 @@ which@^1.2.14, which@^1.2.9, which@^1.3.0: | @@ -8907,9 +9428,9 @@ which@^1.2.14, which@^1.2.9, which@^1.3.0: | ||
| 8907 | dependencies: | 9428 | dependencies: |
| 8908 | isexe "^2.0.0" | 9429 | isexe "^2.0.0" |
| 8909 | 9430 | ||
| 8910 | -which@^2.0.1: | 9431 | +which@^2.0.1, which@^2.0.2: |
| 8911 | version "2.0.2" | 9432 | version "2.0.2" |
| 8912 | - resolved "https://registry.npm.taobao.org/which/download/which-2.0.2.tgz?cache=0&sync_timestamp=1574116720213&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" | 9433 | + resolved "https://registry.npm.taobao.org/which/download/which-2.0.2.tgz?cache=0&sync_timestamp=1589682812246&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwhich%2Fdownload%2Fwhich-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" |
| 8913 | integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE= | 9434 | integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE= |
| 8914 | dependencies: | 9435 | dependencies: |
| 8915 | isexe "^2.0.0" | 9436 | isexe "^2.0.0" |
| @@ -8924,14 +9445,6 @@ wordwrap@^1.0.0: | @@ -8924,14 +9445,6 @@ wordwrap@^1.0.0: | ||
| 8924 | resolved "https://registry.npm.taobao.org/wordwrap/download/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" | 9445 | resolved "https://registry.npm.taobao.org/wordwrap/download/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" |
| 8925 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= | 9446 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= |
| 8926 | 9447 | ||
| 8927 | -wrap-ansi@^2.0.0: | ||
| 8928 | - version "2.1.0" | ||
| 8929 | - resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" | ||
| 8930 | - integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= | ||
| 8931 | - dependencies: | ||
| 8932 | - string-width "^1.0.1" | ||
| 8933 | - strip-ansi "^3.0.1" | ||
| 8934 | - | ||
| 8935 | wrap-ansi@^3.0.1: | 9448 | wrap-ansi@^3.0.1: |
| 8936 | version "3.0.1" | 9449 | version "3.0.1" |
| 8937 | resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" | 9450 | resolved "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" |
| @@ -8981,6 +9494,16 @@ write-file-atomic@^1.2.0: | @@ -8981,6 +9494,16 @@ write-file-atomic@^1.2.0: | ||
| 8981 | imurmurhash "^0.1.4" | 9494 | imurmurhash "^0.1.4" |
| 8982 | slide "^1.1.5" | 9495 | slide "^1.1.5" |
| 8983 | 9496 | ||
| 9497 | +write-file-atomic@^3.0.0: | ||
| 9498 | + version "3.0.3" | ||
| 9499 | + resolved "https://registry.npm.taobao.org/write-file-atomic/download/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" | ||
| 9500 | + integrity sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug= | ||
| 9501 | + dependencies: | ||
| 9502 | + imurmurhash "^0.1.4" | ||
| 9503 | + is-typedarray "^1.0.0" | ||
| 9504 | + signal-exit "^3.0.2" | ||
| 9505 | + typedarray-to-buffer "^3.1.5" | ||
| 9506 | + | ||
| 8984 | write@1.0.3: | 9507 | write@1.0.3: |
| 8985 | version "1.0.3" | 9508 | version "1.0.3" |
| 8986 | resolved "https://registry.npm.taobao.org/write/download/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" | 9509 | resolved "https://registry.npm.taobao.org/write/download/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" |
| @@ -9055,7 +9578,7 @@ xtend@^4.0.0, xtend@~4.0.1: | @@ -9055,7 +9578,7 @@ xtend@^4.0.0, xtend@~4.0.1: | ||
| 9055 | resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" | 9578 | resolved "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" |
| 9056 | integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q= | 9579 | integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q= |
| 9057 | 9580 | ||
| 9058 | -"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: | 9581 | +y18n@^4.0.0: |
| 9059 | version "4.0.0" | 9582 | version "4.0.0" |
| 9060 | resolved "https://registry.npm.taobao.org/y18n/download/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" | 9583 | resolved "https://registry.npm.taobao.org/y18n/download/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" |
| 9061 | integrity sha1-le+U+F7MgdAHwmThkKEg8KPIVms= | 9584 | integrity sha1-le+U+F7MgdAHwmThkKEg8KPIVms= |
| @@ -9079,14 +9602,6 @@ yargs-parser@^10.0.0: | @@ -9079,14 +9602,6 @@ yargs-parser@^10.0.0: | ||
| 9079 | dependencies: | 9602 | dependencies: |
| 9080 | camelcase "^4.1.0" | 9603 | camelcase "^4.1.0" |
| 9081 | 9604 | ||
| 9082 | -yargs-parser@^11.1.1: | ||
| 9083 | - version "11.1.1" | ||
| 9084 | - resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-11.1.1.tgz?cache=0&sync_timestamp=1585243543699&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" | ||
| 9085 | - integrity sha1-h5oIZZc7yp9rq1y987HGfsfTvPQ= | ||
| 9086 | - dependencies: | ||
| 9087 | - camelcase "^5.0.0" | ||
| 9088 | - decamelize "^1.2.0" | ||
| 9089 | - | ||
| 9090 | yargs-parser@^13.1.2: | 9605 | yargs-parser@^13.1.2: |
| 9091 | version "13.1.2" | 9606 | version "13.1.2" |
| 9092 | resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1585243543699&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" | 9607 | resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz?cache=0&sync_timestamp=1585243543699&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" |
| @@ -9111,6 +9626,14 @@ yargs-parser@^16.1.0: | @@ -9111,6 +9626,14 @@ yargs-parser@^16.1.0: | ||
| 9111 | camelcase "^5.0.0" | 9626 | camelcase "^5.0.0" |
| 9112 | decamelize "^1.2.0" | 9627 | decamelize "^1.2.0" |
| 9113 | 9628 | ||
| 9629 | +yargs-parser@^18.1.2: | ||
| 9630 | + version "18.1.3" | ||
| 9631 | + resolved "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-18.1.3.tgz?cache=0&sync_timestamp=1596687526304&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs-parser%2Fdownload%2Fyargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" | ||
| 9632 | + integrity sha1-vmjEl1xrKr9GkjawyHA2L6sJp7A= | ||
| 9633 | + dependencies: | ||
| 9634 | + camelcase "^5.0.0" | ||
| 9635 | + decamelize "^1.2.0" | ||
| 9636 | + | ||
| 9114 | yargs@15.0.2: | 9637 | yargs@15.0.2: |
| 9115 | version "15.0.2" | 9638 | version "15.0.2" |
| 9116 | resolved "https://registry.npm.taobao.org/yargs/download/yargs-15.0.2.tgz#4248bf218ef050385c4f7e14ebdf425653d13bd3" | 9639 | resolved "https://registry.npm.taobao.org/yargs/download/yargs-15.0.2.tgz#4248bf218ef050385c4f7e14ebdf425653d13bd3" |
| @@ -9128,24 +9651,6 @@ yargs@15.0.2: | @@ -9128,24 +9651,6 @@ yargs@15.0.2: | ||
| 9128 | y18n "^4.0.0" | 9651 | y18n "^4.0.0" |
| 9129 | yargs-parser "^16.1.0" | 9652 | yargs-parser "^16.1.0" |
| 9130 | 9653 | ||
| 9131 | -yargs@^12.0.5: | ||
| 9132 | - version "12.0.5" | ||
| 9133 | - resolved "https://registry.npm.taobao.org/yargs/download/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" | ||
| 9134 | - integrity sha1-BfWZe2CWR7ZPZrgeO0sQo2jnrRM= | ||
| 9135 | - dependencies: | ||
| 9136 | - cliui "^4.0.0" | ||
| 9137 | - decamelize "^1.2.0" | ||
| 9138 | - find-up "^3.0.0" | ||
| 9139 | - get-caller-file "^1.0.1" | ||
| 9140 | - os-locale "^3.0.0" | ||
| 9141 | - require-directory "^2.1.1" | ||
| 9142 | - require-main-filename "^1.0.1" | ||
| 9143 | - set-blocking "^2.0.0" | ||
| 9144 | - string-width "^2.0.0" | ||
| 9145 | - which-module "^2.0.0" | ||
| 9146 | - y18n "^3.2.1 || ^4.0.0" | ||
| 9147 | - yargs-parser "^11.1.1" | ||
| 9148 | - | ||
| 9149 | yargs@^13.2.2, yargs@^13.2.4, yargs@^13.3.0: | 9654 | yargs@^13.2.2, yargs@^13.2.4, yargs@^13.3.0: |
| 9150 | version "13.3.2" | 9655 | version "13.3.2" |
| 9151 | resolved "https://registry.npm.taobao.org/yargs/download/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" | 9656 | resolved "https://registry.npm.taobao.org/yargs/download/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" |
| @@ -9179,6 +9684,23 @@ yargs@^14.2.0: | @@ -9179,6 +9684,23 @@ yargs@^14.2.0: | ||
| 9179 | y18n "^4.0.0" | 9684 | y18n "^4.0.0" |
| 9180 | yargs-parser "^15.0.1" | 9685 | yargs-parser "^15.0.1" |
| 9181 | 9686 | ||
| 9687 | +yargs@^15.1.0: | ||
| 9688 | + version "15.4.1" | ||
| 9689 | + resolved "https://registry.npm.taobao.org/yargs/download/yargs-15.4.1.tgz?cache=0&sync_timestamp=1594421142336&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fyargs%2Fdownload%2Fyargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" | ||
| 9690 | + integrity sha1-DYehbeAa7p2L7Cv7909nhRcw9Pg= | ||
| 9691 | + dependencies: | ||
| 9692 | + cliui "^6.0.0" | ||
| 9693 | + decamelize "^1.2.0" | ||
| 9694 | + find-up "^4.1.0" | ||
| 9695 | + get-caller-file "^2.0.1" | ||
| 9696 | + require-directory "^2.1.1" | ||
| 9697 | + require-main-filename "^2.0.0" | ||
| 9698 | + set-blocking "^2.0.0" | ||
| 9699 | + string-width "^4.2.0" | ||
| 9700 | + which-module "^2.0.0" | ||
| 9701 | + y18n "^4.0.0" | ||
| 9702 | + yargs-parser "^18.1.2" | ||
| 9703 | + | ||
| 9182 | yauzl@^2.10.0: | 9704 | yauzl@^2.10.0: |
| 9183 | version "2.10.0" | 9705 | version "2.10.0" |
| 9184 | resolved "https://registry.npm.taobao.org/yauzl/download/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" | 9706 | resolved "https://registry.npm.taobao.org/yauzl/download/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" |
-
Please register or login to post a comment