Skip to content

Commit c88a47f

Browse files
committed
Bump version
1 parent d4d4c41 commit c88a47f

File tree

6 files changed

+167
-15
lines changed

6 files changed

+167
-15
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,12 @@ You can run the test suite with
5252
```zsh
5353
yarn test
5454
```
55+
56+
## iOS & Android versioning
57+
58+
To update version of apps set new version in package.json and run
59+
```zsh
60+
yarn postversion
61+
```
62+
This will set versionName (bundle version string) to one set in package.json and increment versionCode (bundle version)
63+
by one.

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ android {
134134
applicationId "com.avaxwallet"
135135
minSdkVersion rootProject.ext.minSdkVersion
136136
targetSdkVersion rootProject.ext.targetSdkVersion
137-
versionCode 1
138-
versionName "1.0"
137+
versionCode 3
138+
versionName "0.1.2"
139139
}
140140
splits {
141141
abi {

ios/AvaxWallet/Info.plist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
20+
<string>0.1.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1</string>
24+
<string>3</string>
2525
<key>LSRequiresIPhoneOS</key>
26-
<true/>
26+
<true />
2727
<key>NSAppTransportSecurity</key>
2828
<dict>
2929
<key>NSAllowsArbitraryLoads</key>
30-
<true/>
30+
<true />
3131
<key>NSExceptionDomains</key>
3232
<dict>
3333
<key>localhost</key>
3434
<dict>
3535
<key>NSExceptionAllowsInsecureHTTPLoads</key>
36-
<true/>
36+
<true />
3737
</dict>
3838
</dict>
3939
</dict>
4040
<key>NSLocationWhenInUseUsageDescription</key>
41-
<string></string>
41+
<string />
4242
<key>UILaunchStoryboardName</key>
4343
<string>LaunchScreen</string>
4444
<key>UIRequiredDeviceCapabilities</key>
@@ -52,6 +52,6 @@
5252
<string>UIInterfaceOrientationLandscapeRight</string>
5353
</array>
5454
<key>UIViewControllerBasedStatusBarAppearance</key>
55-
<false/>
55+
<false />
5656
</dict>
5757
</plist>

ios/AvaxWalletTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>0.1.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1</string>
22+
<string>3</string>
2323
</dict>
2424
</plist>

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "avalanche-wallet-apps",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",
77
"ios": "cd $INIT_CWD/ios && pod install && cd $INIT_CWD && react-native run-ios",
88
"start": "react-native start",
99
"test": "jest",
10-
"lint": "eslint ."
10+
"lint": "eslint .",
11+
"postversion": "react-native-version"
1112
},
1213
"dependencies": {
1314
"@ethereumjs/common": "^2.2.0",
@@ -39,6 +40,7 @@
3940
"eslint": "7.14.0",
4041
"jest": "26.6.3",
4142
"metro-react-native-babel-preset": "0.64.0",
43+
"react-native-version": "^4.0.0",
4244
"react-test-renderer": "17.0.1",
4345
"typescript": "^4.3.2"
4446
},

yarn.lock

Lines changed: 143 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1757,6 +1757,11 @@ abab@^2.0.3, abab@^2.0.5:
17571757
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
17581758
integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
17591759

1760+
abbrev@1:
1761+
version "1.1.1"
1762+
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
1763+
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
1764+
17601765
abort-controller@^3.0.0:
17611766
version "3.0.0"
17621767
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
@@ -2840,11 +2845,21 @@ commander@^2.19.0:
28402845
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
28412846
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
28422847

2848+
commander@^4.0.0:
2849+
version "4.1.1"
2850+
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
2851+
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
2852+
28432853
commander@~2.13.0:
28442854
version "2.13.0"
28452855
resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
28462856
integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==
28472857

2858+
common-tags@^1.4.0:
2859+
version "1.8.0"
2860+
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
2861+
integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
2862+
28482863
commondir@^1.0.1:
28492864
version "1.0.1"
28502865
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
@@ -2880,6 +2895,14 @@ concat-map@0.0.1:
28802895
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
28812896
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
28822897

2898+
config-chain@^1.1.12:
2899+
version "1.1.13"
2900+
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4"
2901+
integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==
2902+
dependencies:
2903+
ini "^1.3.4"
2904+
proto-list "~1.2.1"
2905+
28832906
connect@^3.6.5:
28842907
version "3.7.0"
28852908
resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8"
@@ -3226,6 +3249,11 @@ destroy@~1.0.4:
32263249
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
32273250
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
32283251

3252+
detect-indent@^6.0.0:
3253+
version "6.1.0"
3254+
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6"
3255+
integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
3256+
32293257
detect-newline@^3.0.0:
32303258
version "3.1.0"
32313259
resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
@@ -3276,6 +3304,11 @@ domexception@^2.0.1:
32763304
dependencies:
32773305
webidl-conversions "^5.0.0"
32783306

3307+
dottie@^2.0.0:
3308+
version "2.0.2"
3309+
resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz#cc91c0726ce3a054ebf11c55fbc92a7f266dd154"
3310+
integrity sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==
3311+
32793312
duplexer3@^0.1.4:
32803313
version "0.1.4"
32813314
resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
@@ -3289,6 +3322,16 @@ ecc-jsbn@~0.1.1:
32893322
jsbn "~0.1.0"
32903323
safer-buffer "^2.1.0"
32913324

3325+
editorconfig@^0.15.3:
3326+
version "0.15.3"
3327+
resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
3328+
integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
3329+
dependencies:
3330+
commander "^2.19.0"
3331+
lru-cache "^4.1.5"
3332+
semver "^5.6.0"
3333+
sigmund "^1.0.1"
3334+
32923335
ee-first@1.1.1:
32933336
version "1.1.1"
32943337
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
@@ -4649,6 +4692,11 @@ inherits@2.0.3:
46494692
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
46504693
integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
46514694

4695+
ini@^1.3.4:
4696+
version "1.3.8"
4697+
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
4698+
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
4699+
46524700
internal-slot@^1.0.3:
46534701
version "1.0.3"
46544702
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
@@ -5425,6 +5473,17 @@ joi@^17.2.1:
54255473
"@sideway/formula" "^3.0.0"
54265474
"@sideway/pinpoint" "^2.0.0"
54275475

5476+
js-beautify@^1.7.4:
5477+
version "1.13.13"
5478+
resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.13.tgz#756907d1728f329f2b84c42efd56ad17514620bf"
5479+
integrity sha512-oH+nc0U5mOAqX8M5JO1J0Pw/7Q35sAdOsM5W3i87pir9Ntx6P/5Gx1xLNoK+MGyvHk4rqqRCE4Oq58H6xl2W7A==
5480+
dependencies:
5481+
config-chain "^1.1.12"
5482+
editorconfig "^0.15.3"
5483+
glob "^7.1.3"
5484+
mkdirp "^1.0.4"
5485+
nopt "^5.0.0"
5486+
54285487
js-sha3@0.5.7, js-sha3@^0.5.7:
54295488
version "0.5.7"
54305489
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7"
@@ -5702,11 +5761,21 @@ lodash.debounce@^4.0.8:
57025761
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
57035762
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
57045763

5764+
lodash.flattendeep@^4.4.0:
5765+
version "4.4.0"
5766+
resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
5767+
integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=
5768+
57055769
lodash.throttle@^4.1.1:
57065770
version "4.1.1"
57075771
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
57085772
integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
57095773

5774+
lodash.uniq@^4.5.0:
5775+
version "4.5.0"
5776+
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
5777+
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
5778+
57105779
lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.7.0:
57115780
version "4.17.21"
57125781
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
@@ -5745,6 +5814,14 @@ lowercase-keys@^2.0.0:
57455814
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
57465815
integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
57475816

5817+
lru-cache@^4.1.5:
5818+
version "4.1.5"
5819+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
5820+
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
5821+
dependencies:
5822+
pseudomap "^1.0.2"
5823+
yallist "^2.1.2"
5824+
57485825
lru-cache@^6.0.0:
57495826
version "6.0.0"
57505827
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -6208,7 +6285,7 @@ mkdirp-promise@^5.0.1:
62086285
dependencies:
62096286
mkdirp "*"
62106287

6211-
mkdirp@*:
6288+
mkdirp@*, mkdirp@^1.0.4:
62126289
version "1.0.4"
62136290
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
62146291
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
@@ -6420,6 +6497,13 @@ node-stream-zip@^1.9.1:
64206497
resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.13.4.tgz#baafc329ffb9e27de84b6882d74e9f2cbe77e2a5"
64216498
integrity sha512-M2nPvnSWFFH+fgLIRZDqmhshmuzXcr+ce9BsHQX/30pXR+cEz/USMYmx9ZAFYy837W2QoDoNzhFtbZhfzaMk9A==
64226499

6500+
nopt@^5.0.0:
6501+
version "5.0.0"
6502+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
6503+
integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
6504+
dependencies:
6505+
abbrev "1"
6506+
64236507
normalize-package-data@^2.5.0:
64246508
version "2.5.0"
64256509
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -6704,6 +6788,19 @@ p-locate@^4.1.0:
67046788
dependencies:
67056789
p-limit "^2.2.0"
67066790

6791+
p-reflect@^2.0.0:
6792+
version "2.1.0"
6793+
resolved "https://registry.yarnpkg.com/p-reflect/-/p-reflect-2.1.0.tgz#5d67c7b3c577c4e780b9451fc9129675bd99fe67"
6794+
integrity sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==
6795+
6796+
p-settle@^3.0.0:
6797+
version "3.1.0"
6798+
resolved "https://registry.yarnpkg.com/p-settle/-/p-settle-3.1.0.tgz#6194f4f929364a8843be54ced118389b7b9ee017"
6799+
integrity sha512-gkN3UDlyofG81IRhxLnonSIi8BBrwcPlKMJS6tcJRubofyekqQPMdB5LXPrmCkeu/m/YKx5PzkUVQLezda5/JQ==
6800+
dependencies:
6801+
p-limit "^2.2.0"
6802+
p-reflect "^2.0.0"
6803+
67076804
p-timeout@^1.1.1:
67086805
version "1.2.1"
67096806
resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
@@ -6835,6 +6932,11 @@ pbkdf2@^3.0.17, pbkdf2@^3.0.3, pbkdf2@^3.0.9:
68356932
safe-buffer "^5.0.1"
68366933
sha.js "^2.4.8"
68376934

6935+
pbxproj-dom@^1.0.11:
6936+
version "1.2.0"
6937+
resolved "https://registry.yarnpkg.com/pbxproj-dom/-/pbxproj-dom-1.2.0.tgz#1cf4101163bd666eba9eb92a5b8f616ce824ea85"
6938+
integrity sha512-K2czrWqA68AR0q1UXz5EBi/zoxcljrkO4RSJX0jPnVn3iyE0HYnYOzaEEDYMpueczkT/Vtdm3SCc3NM+12kMaQ==
6939+
68386940
performance-now@^2.1.0:
68396941
version "2.1.0"
68406942
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
@@ -6971,6 +7073,11 @@ prop-types@^15.7.2:
69717073
object-assign "^4.1.1"
69727074
react-is "^16.8.1"
69737075

7076+
proto-list@~1.2.1:
7077+
version "1.2.4"
7078+
resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
7079+
integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
7080+
69747081
proxy-addr@~2.0.5:
69757082
version "2.0.6"
69767083
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
@@ -6979,6 +7086,11 @@ proxy-addr@~2.0.5:
69797086
forwarded "~0.1.2"
69807087
ipaddr.js "1.9.1"
69817088

7089+
pseudomap@^1.0.2:
7090+
version "1.0.2"
7091+
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
7092+
integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
7093+
69827094
psl@^1.1.28, psl@^1.1.33:
69837095
version "1.8.0"
69847096
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
@@ -7129,6 +7241,25 @@ react-native-randombytes@^3.5.1, react-native-randombytes@^3.6.1:
71297241
buffer "^4.9.1"
71307242
sjcl "^1.0.3"
71317243

7244+
react-native-version@^4.0.0:
7245+
version "4.0.0"
7246+
resolved "https://registry.yarnpkg.com/react-native-version/-/react-native-version-4.0.0.tgz#210115fe967daeb5f48303a34eec3a24a2a40ca0"
7247+
integrity sha512-OMoSbeDcrE5JnmeilkZXYsXnk98/I2hZe/z68NZ+nel3LkixJIOh1AnAxsqW1Cq20Nmyz3bV4PpEYxilKAy9xg==
7248+
dependencies:
7249+
chalk "^3.0.0"
7250+
commander "^4.0.0"
7251+
common-tags "^1.4.0"
7252+
detect-indent "^6.0.0"
7253+
dottie "^2.0.0"
7254+
js-beautify "^1.7.4"
7255+
lodash.flattendeep "^4.4.0"
7256+
lodash.uniq "^4.5.0"
7257+
p-settle "^3.0.0"
7258+
pbxproj-dom "^1.0.11"
7259+
plist "^3.0.1"
7260+
resolve-from "^5.0.0"
7261+
semver "^7.0.0"
7262+
71327263
react-native@0.64.1:
71337264
version "0.64.1"
71347265
resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.64.1.tgz#cd38f5b47b085549686f34eb0c9dcd466f307635"
@@ -7578,7 +7709,7 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
75787709
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
75797710
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
75807711

7581-
semver@^7.2.1, semver@^7.3.2:
7712+
semver@^7.0.0, semver@^7.2.1, semver@^7.3.2:
75827713
version "7.3.5"
75837714
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
75847715
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
@@ -7732,6 +7863,11 @@ side-channel@^1.0.4:
77327863
get-intrinsic "^1.0.2"
77337864
object-inspect "^1.9.0"
77347865

7866+
sigmund@^1.0.1:
7867+
version "1.0.1"
7868+
resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
7869+
integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
7870+
77357871
signal-exit@^3.0.0, signal-exit@^3.0.2:
77367872
version "3.0.3"
77377873
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
@@ -9172,6 +9308,11 @@ yaeti@^0.0.6:
91729308
resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577"
91739309
integrity sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=
91749310

9311+
yallist@^2.1.2:
9312+
version "2.1.2"
9313+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
9314+
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
9315+
91759316
yallist@^3.0.0, yallist@^3.0.3:
91769317
version "3.1.1"
91779318
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"

0 commit comments

Comments
 (0)