Skip to content

Commit 72a8ae8

Browse files
authored
Merge pull request #355 from Iterable/jay/MOB-4398-post-1.3.1
[MOB-4398] update sample apps and integration to 1.3.2
2 parents f0745dc + edefeeb commit 72a8ae8

6 files changed

Lines changed: 148 additions & 21 deletions

File tree

SampleApp/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "eslint ."
1111
},
1212
"dependencies": {
13-
"@iterable/react-native-sdk": "^1.3.0",
13+
"@iterable/react-native-sdk": "^1.3.2",
1414
"@react-native-community/masked-view": "^0.1.10",
1515
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
1616
"@react-navigation/bottom-tabs": "^5.4.5",

SampleApp/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "eslint ."
1111
},
1212
"dependencies": {
13-
"@iterable/react-native-sdk": "^1.3.0",
13+
"@iterable/react-native-sdk": "^1.3.2",
1414
"@react-native-community/masked-view": "^0.1.10",
1515
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
1616
"@react-navigation/bottom-tabs": "^5.4.5",

integration-testing/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@
1010
"e2e:android-release": "npm run build:android-release && npm run test:android-release"
1111
},
1212
"dependencies": {
13-
"@iterable/react-native-sdk": "^1.3.0",
13+
"@iterable/react-native-sdk": "^1.3.2",
1414
"@react-native-community/masked-view": "^0.1.10",
1515
"@react-navigation/bottom-tabs": "^5.4.5",
1616
"@react-navigation/native": "^5.4.0",
1717
"@react-navigation/stack": "^5.3.7",
18+
"@types/react": "^18.0.12",
1819
"react": "^17.0.2",
1920
"react-native": "^0.63",
2021
"react-native-elements": "^1.2.7",
@@ -31,11 +32,11 @@
3132
"@babel/core": "^7.9.6",
3233
"@babel/runtime": "^7.9.6",
3334
"@react-native-community/eslint-config": "^0.0.7",
34-
"@types/react-native": "0.62.x",
35+
"@types/react-native": "^0.67.8",
3536
"@types/react-native-vector-icons": "^6.4.5",
3637
"eslint": "^6.8.0",
3738
"metro-react-native-babel-preset": "^0.59.0",
3839
"mocha": "^6.1.3",
3940
"react-test-renderer": "16.9.0"
4041
}
41-
}
42+
}

integration-testing/ts/App.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ import {
1010
} from 'react-native';
1111

1212
import {
13-
Iterable,
14-
IterableConfig,
1513
IterableAction,
1614
IterableActionContext,
17-
IterableInAppMessage,
1815
IterableInAppShowResponse,
1916
IterableInAppLocation,
2017
IterableInAppDeleteSource,
2118
} from '@iterable/react-native-sdk';
2219

20+
import { Iterable } from '@iterable/react-native-sdk/js/Iterable';
21+
import IterableConfig from '@iterable/react-native-sdk/js/IterableConfig';
22+
import IterableInAppMessage from '@iterable/react-native-sdk/js/IterableInAppMessage';
23+
2324
import { Login } from './Login'
2425

2526
// Consts

integration-testing/ts/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
Image,
1111
} from 'react-native'
1212
import { TextInput } from 'react-native-gesture-handler'
13-
import { Iterable } from '@iterable/react-native-sdk'
13+
import { Iterable } from '@iterable/react-native-sdk/js/Iterable'
1414

1515
interface Props { }
1616
interface State {

integration-testing/yarn.lock

Lines changed: 137 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -703,10 +703,16 @@
703703
dependencies:
704704
"@hapi/hoek" "^8.3.0"
705705

706-
"@iterable/react-native-sdk@^1.2.3":
707-
version "1.2.3"
708-
resolved "https://registry.yarnpkg.com/@iterable/react-native-sdk/-/react-native-sdk-1.2.3.tgz#4d0a4c549ff215979b5afd7f27b1f4a96f8cf099"
709-
integrity sha512-H9VjsKhtdoxwI3krVqkwP3je5Ar0A818e+JcF1sCnHwCpej0UNJ+LKefUxkyRQB9T2N1PWwsUWJxQlXMNfqBkA==
706+
"@iterable/react-native-sdk@^1.3.1":
707+
version "1.3.1"
708+
resolved "https://registry.yarnpkg.com/@iterable/react-native-sdk/-/react-native-sdk-1.3.1.tgz#811f2f97a0337e60a6ce7f14f8927496d4a3b238"
709+
integrity sha512-kjaYNKt3nPcwUbEWvcmKKvM4wYPbKZuZ9uT6U5azDfon4l0XAu0KYwJVoovmkDi+egDyb4yAkIfFGIhCNOvVWQ==
710+
dependencies:
711+
"@react-native-community/hooks" "^2.6.0"
712+
"@react-navigation/native" "^6.0.6"
713+
react-native-safe-area-context "^4.1.2"
714+
react-native-vector-icons "^9.0.0"
715+
react-native-webview "^11.14.1"
710716

711717
"@jest/console@^24.9.0":
712718
version "24.9.0"
@@ -925,6 +931,11 @@
925931
resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.2.0.tgz#7d6d789ae8edf73dc9bed1246cd48277edea8066"
926932
integrity sha512-o6aam+0Ug1xGK3ABYmBm0B1YuEKfM/5kaoZO0eHbZwSpw9UzDX4G5y4Nx/K20FHqUmJHkZmLvOUFYwN4N+HqKA==
927933

934+
"@react-native-community/hooks@^2.6.0":
935+
version "2.8.1"
936+
resolved "https://registry.yarnpkg.com/@react-native-community/hooks/-/hooks-2.8.1.tgz#6e785431db49318048fdd14b601998437b6cc200"
937+
integrity sha512-DCmCIC0Gn9m6K0Mlg2MwNmTxMEpBu5lTLsI6b/XUAv/vLGa6o+X7RhCai4FWeqkjCU36+ZOwaLzDo4NBWMXaoQ==
938+
928939
"@react-native-community/masked-view@^0.1.10":
929940
version "0.1.11"
930941
resolved "https://registry.yarnpkg.com/@react-native-community/masked-view/-/masked-view-0.1.11.tgz#2f4c6e10bee0786abff4604e39a37ded6f3980ce"
@@ -959,6 +970,17 @@
959970
query-string "^6.13.6"
960971
react-is "^16.13.0"
961972

973+
"@react-navigation/core@^6.2.1":
974+
version "6.2.1"
975+
resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.2.1.tgz#90459f9afd25b71a9471b0706ebea2cdd2534fc4"
976+
integrity sha512-3mjS6ujwGnPA/BC11DN9c2c42gFld6B6dQBgDedxP2djceXESpY2kVTTwISDHuqFnF7WjvRjsrDu3cKBX+JosA==
977+
dependencies:
978+
"@react-navigation/routers" "^6.1.0"
979+
escape-string-regexp "^4.0.0"
980+
nanoid "^3.1.23"
981+
query-string "^7.0.0"
982+
react-is "^16.13.0"
983+
962984
"@react-navigation/native@^3.8.4":
963985
version "3.8.4"
964986
resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-3.8.4.tgz#4d77f86506364ecf18b33c7f8740afb6763d0b37"
@@ -976,13 +998,30 @@
976998
escape-string-regexp "^4.0.0"
977999
nanoid "^3.1.15"
9781000

1001+
"@react-navigation/native@^6.0.6":
1002+
version "6.0.10"
1003+
resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.0.10.tgz#c58aa176eb0e63f3641c83a65c509faf253e4385"
1004+
integrity sha512-H6QhLeiieGxNcAJismIDXIPZgf1myr7Og8v116tezIGmincJTOcWavTd7lPHGnMMXaZg94LlVtbaBRIx9cexqw==
1005+
dependencies:
1006+
"@react-navigation/core" "^6.2.1"
1007+
escape-string-regexp "^4.0.0"
1008+
fast-deep-equal "^3.1.3"
1009+
nanoid "^3.1.23"
1010+
9791011
"@react-navigation/routers@^5.7.4":
9801012
version "5.7.4"
9811013
resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-5.7.4.tgz#8b5460e841a0c64f6c9a5fbc2a1eb832432d4fb0"
9821014
integrity sha512-0N202XAqsU/FlE53Nmh6GHyMtGm7g6TeC93mrFAFJOqGRKznT0/ail+cYlU6tNcPA9AHzZu1Modw1eoDINSliQ==
9831015
dependencies:
9841016
nanoid "^3.1.15"
9851017

1018+
"@react-navigation/routers@^6.1.0":
1019+
version "6.1.0"
1020+
resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.0.tgz#d5682be88f1eb7809527c48f9cd3dedf4f344e40"
1021+
integrity sha512-8xJL+djIzpFdRW/sGlKojQ06fWgFk1c5jER9501HYJ12LF5DIJFr/tqBI2TJ6bk+y+QFu0nbNyeRC80OjRlmkA==
1022+
dependencies:
1023+
nanoid "^3.1.23"
1024+
9861025
"@react-navigation/stack@^5.3.7":
9871026
version "5.14.9"
9881027
resolved "https://registry.yarnpkg.com/@react-navigation/stack/-/stack-5.14.9.tgz#49c7b9316e6fb456e9766c901e0d607862f0ea7d"
@@ -1046,10 +1085,10 @@
10461085
dependencies:
10471086
"@types/react" "*"
10481087

1049-
"@types/react-native@0.62.x":
1050-
version "0.62.18"
1051-
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.62.18.tgz#ad63691e7c44edef2beeb6af52b2eb942c3ed8a1"
1052-
integrity sha512-7QfU8EzIYxYqeXpPf8QNv2xi8hrePlgTbRATRo+plRSdVfJu7N6sAXqrFxKJp6bGLvp82GV1gczl93gqiAfXPA==
1088+
"@types/react-native@^0.67.8":
1089+
version "0.67.8"
1090+
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.8.tgz#edaaa0527b835fffbfc34c09874722b6e4a4d1f3"
1091+
integrity sha512-xA8rYiTHvO6RoZv/LFnmEeqRuhA2y34mGB8zX3bGHe/pCt9jEStUPyUO4q1KcDc9GiGIOBD8ArfRtThprAjSfQ==
10531092
dependencies:
10541093
"@types/react" "*"
10551094

@@ -1062,6 +1101,15 @@
10621101
"@types/scheduler" "*"
10631102
csstype "^3.0.2"
10641103

1104+
"@types/react@^18.0.12":
1105+
version "18.0.12"
1106+
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.12.tgz#cdaa209d0a542b3fcf69cf31a03976ec4cdd8840"
1107+
integrity sha512-duF1OTASSBQtcigUvhuiTB1Ya3OvSy+xORCiEf20H0P0lzx+/KeVsA99U5UjLXSbyo1DRJDlLKqTeM1ngosqtg==
1108+
dependencies:
1109+
"@types/prop-types" "*"
1110+
"@types/scheduler" "*"
1111+
csstype "^3.0.2"
1112+
10651113
"@types/scheduler@*":
10661114
version "0.16.2"
10671115
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
@@ -1721,6 +1769,15 @@ cliui@^6.0.0:
17211769
strip-ansi "^6.0.0"
17221770
wrap-ansi "^6.2.0"
17231771

1772+
cliui@^7.0.2:
1773+
version "7.0.4"
1774+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1775+
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1776+
dependencies:
1777+
string-width "^4.2.0"
1778+
strip-ansi "^6.0.0"
1779+
wrap-ansi "^7.0.0"
1780+
17241781
clone-deep@^4.0.1:
17251782
version "4.0.1"
17261783
resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
@@ -2168,7 +2225,7 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.5:
21682225
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
21692226
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
21702227

2171-
escape-string-regexp@^2.0.0:
2228+
escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0:
21722229
version "2.0.0"
21732230
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
21742231
integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
@@ -2469,7 +2526,7 @@ fancy-log@^1.3.2:
24692526
parse-node-version "^1.0.0"
24702527
time-stamp "^1.0.0"
24712528

2472-
fast-deep-equal@^3.1.1:
2529+
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
24732530
version "3.1.3"
24742531
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
24752532
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
@@ -2706,7 +2763,7 @@ gensync@^1.0.0-beta.2:
27062763
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
27072764
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
27082765

2709-
get-caller-file@^2.0.1:
2766+
get-caller-file@^2.0.1, get-caller-file@^2.0.5:
27102767
version "2.0.5"
27112768
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
27122769
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
@@ -3021,7 +3078,7 @@ internal-slot@^1.0.3:
30213078
has "^1.0.3"
30223079
side-channel "^1.0.4"
30233080

3024-
invariant@^2.2.4:
3081+
invariant@2.2.4, invariant@^2.2.4:
30253082
version "2.2.4"
30263083
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
30273084
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -4024,6 +4081,11 @@ nanoid@^3.1.15:
40244081
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
40254082
integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
40264083

4084+
nanoid@^3.1.23:
4085+
version "3.3.4"
4086+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
4087+
integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
4088+
40274089
nanomatch@^1.2.9:
40284090
version "1.2.13"
40294091
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
@@ -4533,6 +4595,16 @@ query-string@^6.13.6:
45334595
split-on-first "^1.0.0"
45344596
strict-uri-encode "^2.0.0"
45354597

4598+
query-string@^7.0.0:
4599+
version "7.1.1"
4600+
resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.1.tgz#754620669db978625a90f635f12617c271a088e1"
4601+
integrity sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==
4602+
dependencies:
4603+
decode-uri-component "^0.2.0"
4604+
filter-obj "^1.1.0"
4605+
split-on-first "^1.0.0"
4606+
strict-uri-encode "^2.0.0"
4607+
45364608
range-parser@~1.2.1:
45374609
version "1.2.1"
45384610
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
@@ -4611,6 +4683,11 @@ react-native-safe-area-context@^0.7.3:
46114683
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-0.7.3.tgz#ad6bd4abbabe195332c53810e4ce5851eb21aa2a"
46124684
integrity sha512-9Uqu1vlXPi+2cKW/CW6OnHxA76mWC4kF3wvlqzq4DY8hn37AeiXtLFs2WkxH4yXQRrnJdP6ivc65Lz+MqwRZAA==
46134685

4686+
react-native-safe-area-context@^4.1.2:
4687+
version "4.3.1"
4688+
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.1.tgz#5cf97b25b395e0d09bc1f828920cd7da0d792ade"
4689+
integrity sha512-cEr7fknJCToTrSyDCVNg0GRdRMhyLeQa2NZwVCuzEQcWedOw/59ExomjmzCE4rxrKXs6OJbyfNtFRNyewDaHuA==
4690+
46144691
react-native-safe-area-view@^0.14.9:
46154692
version "0.14.9"
46164693
resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.9.tgz#90ee8383037010d9a5055a97cf97e4c1da1f0c3d"
@@ -4642,6 +4719,22 @@ react-native-vector-icons@^6.6.0:
46424719
prop-types "^15.7.2"
46434720
yargs "^15.0.2"
46444721

4722+
react-native-vector-icons@^9.0.0:
4723+
version "9.1.0"
4724+
resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-9.1.0.tgz#52eaa205f5954d567b7048eb93d58ac854a2c59e"
4725+
integrity sha512-2AHZ/h9d/+rC0odz+OwbGNlc1Lik/pHhSixn4HfC8RtQ8CxfSBZ6gg7bTLcZhdSvZN+ZEGi30Fj+ZnOSQy+smg==
4726+
dependencies:
4727+
prop-types "^15.7.2"
4728+
yargs "^16.1.1"
4729+
4730+
react-native-webview@^11.14.1:
4731+
version "11.21.1"
4732+
resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-11.21.1.tgz#9d777b592a2f6802a8adb07e90e8cdaafc15d109"
4733+
integrity sha512-0136xrXV1VYMLj9yqma/8lNjUAoTa9uUYjAXlnkX8gSZbp4Bfk7VjDgXM2DCuYF/Pqzrq37hqYVyV+Hl/5zzlQ==
4734+
dependencies:
4735+
escape-string-regexp "2.0.0"
4736+
invariant "2.2.4"
4737+
46454738
react-native@^0.63:
46464739
version "0.63.4"
46474740
resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.63.4.tgz#2210fdd404c94a5fa6b423c6de86f8e48810ec36"
@@ -5737,6 +5830,15 @@ wrap-ansi@^6.2.0:
57375830
string-width "^4.1.0"
57385831
strip-ansi "^6.0.0"
57395832

5833+
wrap-ansi@^7.0.0:
5834+
version "7.0.0"
5835+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
5836+
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
5837+
dependencies:
5838+
ansi-styles "^4.0.0"
5839+
string-width "^4.1.0"
5840+
strip-ansi "^6.0.0"
5841+
57405842
wrappy@1:
57415843
version "1.0.2"
57425844
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
@@ -5797,6 +5899,11 @@ y18n@^4.0.0:
57975899
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
57985900
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
57995901

5902+
y18n@^5.0.5:
5903+
version "5.0.8"
5904+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
5905+
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
5906+
58005907
yallist@^2.1.2:
58015908
version "2.1.2"
58025909
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
@@ -5826,6 +5933,11 @@ yargs-parser@^18.1.2:
58265933
camelcase "^5.0.0"
58275934
decamelize "^1.2.0"
58285935

5936+
yargs-parser@^20.2.2:
5937+
version "20.2.9"
5938+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
5939+
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
5940+
58295941
yargs-unparser@1.6.0:
58305942
version "1.6.0"
58315943
resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f"
@@ -5884,3 +5996,16 @@ yargs@^15.0.2, yargs@^15.1.0:
58845996
which-module "^2.0.0"
58855997
y18n "^4.0.0"
58865998
yargs-parser "^18.1.2"
5999+
6000+
yargs@^16.1.1:
6001+
version "16.2.0"
6002+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
6003+
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
6004+
dependencies:
6005+
cliui "^7.0.2"
6006+
escalade "^3.1.1"
6007+
get-caller-file "^2.0.5"
6008+
require-directory "^2.1.1"
6009+
string-width "^4.2.0"
6010+
y18n "^5.0.5"
6011+
yargs-parser "^20.2.2"

0 commit comments

Comments
 (0)