Skip to content

Commit c129918

Browse files
committed
Bring it back to TS 3.2.4
The last release of typescript-eslint-parser is 22.0.0 which only supports up to TS 3.2.x. We're stuck on this because eslint-plugin-shopify still uses typescript-eslint-parser and has not yet moved onto its replacement package @typescript-eslint/parser - which supports TS 3.2.x and above. Somehow among all this we now get false positives for violations of the import/named rule. It's fine to disable that as TS will shout at us if we reference an unknown import anyway. This gets the linting to run and pass, but we're still type-check errors.
1 parent 1960f84 commit c129918

File tree

3 files changed

+28
-171
lines changed

3 files changed

+28
-171
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"allowBlockStart": false
2929
}
3030
],
31+
"import/named": "off",
3132
"import/no-named-as-default": "off",
3233
"react/button-has-type": "off",
3334
"react/no-array-index-key": "off",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@
155155
"shelljs": "^0.7.7",
156156
"shx": "^0.2.2",
157157
"svgo": "^0.7.2",
158-
"typescript": "~3.4.5",
158+
"typescript": "3.2.1",
159159
"yargs": "^12.0.1"
160160
},
161161
"peerDependencies": {
162162
"react": "^16.3.1",
163163
"react-dom": "^16.3.1"
164164
},
165165
"resolutions": {
166-
"typescript-eslint-parser": "20.0.0"
166+
"typescript-eslint-parser": "22.0.0"
167167
},
168168
"files": [
169169
"esnext",

yarn.lock

+25-169
Original file line numberDiff line numberDiff line change
@@ -2609,13 +2609,6 @@ acorn-globals@^4.1.0:
26092609
acorn "^6.0.1"
26102610
acorn-walk "^6.0.1"
26112611

2612-
acorn-jsx@^3.0.0:
2613-
version "3.0.1"
2614-
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
2615-
integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=
2616-
dependencies:
2617-
acorn "^3.0.4"
2618-
26192612
acorn-jsx@^4.1.1:
26202613
version "4.1.1"
26212614
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e"
@@ -2628,17 +2621,12 @@ acorn-walk@^6.0.1:
26282621
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.0.tgz#c957f4a1460da46af4a0388ce28b4c99355b0cbc"
26292622
integrity sha512-ugTb7Lq7u4GfWSqqpwE0bGyoBZNMTok/zDBXxfEG0QM50jNlGhIWjRC1pPN7bvV1anhF+bs+/gNcRw+o55Evbg==
26302623

2631-
acorn@^3.0.4:
2632-
version "3.3.0"
2633-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
2634-
integrity sha1-ReN/s56No/JbruP/U2niu18iAXo=
2635-
26362624
acorn@^5.0.0:
26372625
version "5.2.1"
26382626
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
26392627
integrity sha512-jG0u7c4Ly+3QkkW18V+NRDN+4bWHdln30NL1ZL2AvFZZmQe/BfopYCtghCKKVBUSetZ4QKcyA0pY6/4Gw8Pv8w==
26402628

2641-
acorn@^5.0.3, acorn@^5.5.0, acorn@^5.5.3, acorn@^5.6.0, acorn@^5.6.2, acorn@^5.7.3:
2629+
acorn@^5.0.3, acorn@^5.5.3, acorn@^5.6.0, acorn@^5.6.2, acorn@^5.7.3:
26422630
version "5.7.3"
26432631
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
26442632
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
@@ -2694,11 +2682,6 @@ ajv-errors@^1.0.0:
26942682
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59"
26952683
integrity sha1-7PAh+hCP0X37Xms4Py3SM+Mf/Fk=
26962684

2697-
ajv-keywords@^2.1.0:
2698-
version "2.1.1"
2699-
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
2700-
integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=
2701-
27022685
ajv-keywords@^3.1.0:
27032686
version "3.2.0"
27042687
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a"
@@ -2714,7 +2697,7 @@ [email protected], ajv@^6.5.3:
27142697
json-schema-traverse "^0.4.1"
27152698
uri-js "^4.2.2"
27162699

2717-
ajv@^5.2.3, ajv@^5.3.0:
2700+
ajv@^5.3.0:
27182701
version "5.5.2"
27192702
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
27202703
integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=
@@ -3304,7 +3287,7 @@ axobject-query@^2.0.1:
33043287
dependencies:
33053288
ast-types-flow "0.0.7"
33063289

3307-
babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
3290+
babel-code-frame@^6.26.0:
33083291
version "6.26.0"
33093292
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
33103293
integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
@@ -4757,11 +4740,6 @@ character-reference-invalid@^1.0.0:
47574740
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz#21e421ad3d84055952dab4a43a04e73cd425d3ed"
47584741
integrity sha512-7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ==
47594742

4760-
chardet@^0.4.0:
4761-
version "0.4.2"
4762-
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"
4763-
integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=
4764-
47654743
chardet@^0.7.0:
47664744
version "0.7.0"
47674745
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
@@ -5236,7 +5214,7 @@ [email protected]:
52365214
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
52375215
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
52385216

5239-
[email protected], concat-stream@^1.5.0, concat-stream@^1.6.0:
5217+
[email protected], concat-stream@^1.5.0:
52405218
version "1.6.2"
52415219
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
52425220
integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
@@ -7105,14 +7083,6 @@ [email protected]:
71057083
esrecurse "^4.1.0"
71067084
estraverse "^4.1.1"
71077085

7108-
eslint-scope@^3.7.1:
7109-
version "3.7.3"
7110-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535"
7111-
integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==
7112-
dependencies:
7113-
esrecurse "^4.1.0"
7114-
estraverse "^4.1.1"
7115-
71167086
eslint-scope@^4.0.0:
71177087
version "4.0.0"
71187088
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172"
@@ -7131,50 +7101,6 @@ eslint-visitor-keys@^1.0.0:
71317101
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
71327102
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
71337103

7134-
7135-
version "4.19.1"
7136-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300"
7137-
integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==
7138-
dependencies:
7139-
ajv "^5.3.0"
7140-
babel-code-frame "^6.22.0"
7141-
chalk "^2.1.0"
7142-
concat-stream "^1.6.0"
7143-
cross-spawn "^5.1.0"
7144-
debug "^3.1.0"
7145-
doctrine "^2.1.0"
7146-
eslint-scope "^3.7.1"
7147-
eslint-visitor-keys "^1.0.0"
7148-
espree "^3.5.4"
7149-
esquery "^1.0.0"
7150-
esutils "^2.0.2"
7151-
file-entry-cache "^2.0.0"
7152-
functional-red-black-tree "^1.0.1"
7153-
glob "^7.1.2"
7154-
globals "^11.0.1"
7155-
ignore "^3.3.3"
7156-
imurmurhash "^0.1.4"
7157-
inquirer "^3.0.6"
7158-
is-resolvable "^1.0.0"
7159-
js-yaml "^3.9.1"
7160-
json-stable-stringify-without-jsonify "^1.0.1"
7161-
levn "^0.3.0"
7162-
lodash "^4.17.4"
7163-
minimatch "^3.0.2"
7164-
mkdirp "^0.5.1"
7165-
natural-compare "^1.4.0"
7166-
optionator "^0.8.2"
7167-
path-is-inside "^1.0.2"
7168-
pluralize "^7.0.0"
7169-
progress "^2.0.0"
7170-
regexpp "^1.0.1"
7171-
require-uncached "^1.0.3"
7172-
semver "^5.3.0"
7173-
strip-ansi "^4.0.0"
7174-
strip-json-comments "~2.0.1"
7175-
table "4.0.2"
7176-
text-table "~0.2.0"
7177-
71787104
eslint@^5.6.0:
71797105
version "5.7.0"
71807106
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.7.0.tgz#55c326d6fb2ad45fcbd0ce17c3846f025d1d819c"
@@ -7224,14 +7150,6 @@ esm@^3.0.71:
72247150
resolved "https://registry.yarnpkg.com/esm/-/esm-3.0.82.tgz#e8c4363a14e30936bedf49a44bf962e2c91866ff"
72257151
integrity sha512-vakh2il2Q9QdwCUEiFQqtamOANcGATh5OlMRLaXsvOhuuzr/SXdngYw1rwJjesrljbnsq3+UZ5+3Y3uszc/U/w==
72267152

7227-
espree@^3.5.4:
7228-
version "3.5.4"
7229-
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
7230-
integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==
7231-
dependencies:
7232-
acorn "^5.5.0"
7233-
acorn-jsx "^3.0.0"
7234-
72357153
espree@^4.0.0:
72367154
version "4.0.0"
72377155
resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634"
@@ -7267,7 +7185,7 @@ espurify@^1.5.0:
72677185
dependencies:
72687186
core-js "^2.0.0"
72697187

7270-
esquery@^1.0.0, esquery@^1.0.1:
7188+
esquery@^1.0.1:
72717189
version "1.0.1"
72727190
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
72737191
integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==
@@ -7591,15 +7509,6 @@ extend@~3.0.2:
75917509
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
75927510
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
75937511

7594-
external-editor@^2.0.4:
7595-
version "2.2.0"
7596-
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
7597-
integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==
7598-
dependencies:
7599-
chardet "^0.4.0"
7600-
iconv-lite "^0.4.17"
7601-
tmp "^0.0.33"
7602-
76037512
external-editor@^3.0.0, external-editor@^3.0.3:
76047513
version "3.0.3"
76057514
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27"
@@ -8486,11 +8395,6 @@ global@^4.3.0, global@^4.3.2:
84868395
min-document "^2.19.0"
84878396
process "~0.5.1"
84888397

8489-
globals@^11.0.1:
8490-
version "11.9.0"
8491-
resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249"
8492-
integrity sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg==
8493-
84948398
globals@^11.1.0:
84958399
version "11.1.0"
84968400
resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4"
@@ -9337,7 +9241,7 @@ [email protected], iconv-lite@~0.4.13:
93379241
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
93389242
integrity sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==
93399243

9340-
[email protected], iconv-lite@^0.4.17, iconv-lite@^0.4.24:
9244+
[email protected], iconv-lite@^0.4.24:
93419245
version "0.4.24"
93429246
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
93439247
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
@@ -9394,7 +9298,7 @@ ignore-walk@^3.0.1:
93949298
dependencies:
93959299
minimatch "^3.0.4"
93969300

9397-
ignore@^3.3.3, ignore@^3.3.5, ignore@^3.3.8:
9301+
ignore@^3.3.5, ignore@^3.3.8:
93989302
version "3.3.10"
93999303
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
94009304
integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==
@@ -9646,26 +9550,6 @@ [email protected]:
96469550
strip-ansi "^5.0.0"
96479551
through "^2.3.6"
96489552

9649-
inquirer@^3.0.6:
9650-
version "3.3.0"
9651-
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
9652-
integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==
9653-
dependencies:
9654-
ansi-escapes "^3.0.0"
9655-
chalk "^2.0.0"
9656-
cli-cursor "^2.1.0"
9657-
cli-width "^2.0.0"
9658-
external-editor "^2.0.4"
9659-
figures "^2.0.0"
9660-
lodash "^4.3.0"
9661-
mute-stream "0.0.7"
9662-
run-async "^2.2.0"
9663-
rx-lite "^4.0.8"
9664-
rx-lite-aggregates "^4.0.8"
9665-
string-width "^2.1.0"
9666-
strip-ansi "^4.0.0"
9667-
through "^2.3.6"
9668-
96699553
inquirer@^6.2.0:
96709554
version "6.2.2"
96719555
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406"
@@ -10825,7 +10709,7 @@ js-tokens@^3.0.0, js-tokens@^3.0.2:
1082510709
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1082610710
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1082710711

10828-
js-yaml@^3.10.0, js-yaml@^3.11.0, js-yaml@^3.12.0, js-yaml@^3.12.1, js-yaml@^3.7.0, js-yaml@^3.9.0, js-yaml@^3.9.1:
10712+
js-yaml@^3.10.0, js-yaml@^3.11.0, js-yaml@^3.12.0, js-yaml@^3.12.1, js-yaml@^3.7.0, js-yaml@^3.9.0:
1082910713
version "3.12.1"
1083010714
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600"
1083110715
integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA==
@@ -11476,7 +11360,7 @@ lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.4, l
1147611360
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
1147711361
integrity sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=
1147811362

11479-
lodash@^4.11.1, lodash@^4.17.11, lodash@^4.2.0, lodash@^4.3.0:
11363+
lodash@^4.11.1, lodash@^4.17.11, lodash@^4.2.0:
1148011364
version "4.17.11"
1148111365
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
1148211366
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
@@ -15079,11 +14963,6 @@ regexp.prototype.flags@^1.2.0:
1507914963
dependencies:
1508014964
define-properties "^1.1.2"
1508114965

15082-
regexpp@^1.0.1:
15083-
version "1.1.0"
15084-
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
15085-
integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==
15086-
1508714966
regexpp@^2.0.0:
1508814967
version "2.0.0"
1508914968
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.0.tgz#b2a7534a85ca1b033bcf5ce9ff8e56d4e0755365"
@@ -15607,18 +15486,6 @@ run-queue@^1.0.0, run-queue@^1.0.3:
1560715486
dependencies:
1560815487
aproba "^1.1.1"
1560915488

15610-
rx-lite-aggregates@^4.0.8:
15611-
version "4.0.8"
15612-
resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be"
15613-
integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=
15614-
dependencies:
15615-
rx-lite "*"
15616-
15617-
rx-lite@*, rx-lite@^4.0.8:
15618-
version "4.0.8"
15619-
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
15620-
integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=
15621-
1562215489
rxjs@^6.1.0:
1562315490
version "6.2.1"
1562415491
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.2.1.tgz#246cebec189a6cbc143a3ef9f62d6f4c91813ca1"
@@ -16956,18 +16823,6 @@ symbol.prototype.description@^1.0.0:
1695616823
dependencies:
1695716824
has-symbols "^1.0.0"
1695816825

16959-
16960-
version "4.0.2"
16961-
resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
16962-
integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==
16963-
dependencies:
16964-
ajv "^5.2.3"
16965-
ajv-keywords "^2.1.0"
16966-
chalk "^2.1.0"
16967-
lodash "^4.17.4"
16968-
slice-ansi "1.0.0"
16969-
string-width "^2.1.1"
16970-
1697116826
table@^5.0.0, table@^5.0.2:
1697216827
version "5.1.0"
1697316828
resolved "https://registry.yarnpkg.com/table/-/table-5.1.0.tgz#69a54644f6f01ad1628f8178715b408dc6bf11f7"
@@ -17140,7 +16995,7 @@ test-exclude@^4.2.1:
1714016995
read-pkg-up "^1.0.1"
1714116996
require-main-filename "^1.0.1"
1714216997

17143-
[email protected], text-table@^0.2.0, text-table@~0.2.0:
16998+
[email protected], text-table@^0.2.0:
1714416999
version "0.2.0"
1714517000
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
1714617001
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
@@ -17468,26 +17323,27 @@ typedarray@^0.0.6:
1746817323
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1746917324
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
1747017325

17471-
17472-
version "20.0.0"
17473-
resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-20.0.0.tgz#508678796bbcf60365ada28c38bd557e736bec01"
17474-
integrity sha512-HZEoGA+LnS3etUlVAPX6I8sZ7872Yb0vPvQv6QDCIE44KD3bFmvPEQ4LbiD+qGkcxh6segjVK0v3rxpb2R6oSA==
17326+
17327+
version "22.0.0"
17328+
resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-22.0.0.tgz#f5e766c9b50711b03535e29a10b45f957e3c516a"
17329+
integrity sha512-pD8D7oTeRwWvFVxK3PaY6FYAiZsuRXFkIc2+1xkwCT3NduySgCgjeAkR5/dnIWecOiFVcEHf4ypXurF02Q6Z3Q==
1747517330
dependencies:
17476-
eslint "4.19.1"
17477-
typescript-estree "2.1.0"
17331+
eslint-scope "^4.0.0"
17332+
eslint-visitor-keys "^1.0.0"
17333+
typescript-estree "18.0.0"
1747817334

17479-
typescript-estree@2.1.0:
17480-
version "2.1.0"
17481-
resolved "https://registry.yarnpkg.com/typescript-estree/-/typescript-estree-2.1.0.tgz#b2f3353494409ed53bf7055b46f78c1fbbe47661"
17482-
integrity sha512-t4o+7pB4OnxV36Bp41Vgtq8vXIvIUbx1vM98PSE2mL5QBY6woFaBN9hhD8pZHIrAu24IB5gzxbkEJOXj4lWNXQ==
17335+
typescript-estree@18.0.0:
17336+
version "18.0.0"
17337+
resolved "https://registry.yarnpkg.com/typescript-estree/-/typescript-estree-18.0.0.tgz#a309f6c6502c64d74b3f88c205d871a9af0b1d40"
17338+
integrity sha512-HxTWrzFyYOPWA91Ij7xL9mNUVpGTKLH2KiaBn28CMbYgX2zgWdJqU9hO7Are+pAPAqY91NxAYoaAyDDZ3rLj2A==
1748317339
dependencies:
1748417340
lodash.unescape "4.0.1"
1748517341
semver "5.5.0"
1748617342

17487-
typescript@~3.4.5:
17488-
version "3.4.5"
17489-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.5.tgz#2d2618d10bb566572b8d7aad5180d84257d70a99"
17490-
integrity sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw==
17343+
typescript@3.2.1:
17344+
version "3.2.1"
17345+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.2.1.tgz#0b7a04b8cf3868188de914d9568bd030f0c56192"
17346+
integrity sha512-jw7P2z/h6aPT4AENXDGjcfHTu5CSqzsbZc6YlUIebTyBAq8XaKp78x7VcSh30xwSCcsu5irZkYZUSFP1MrAMbg==
1749117347

1749217348
ua-parser-js@^0.7.18:
1749317349
version "0.7.19"

0 commit comments

Comments
 (0)