Skip to content

Commit dc23a85

Browse files
committed
chore: upgrade eslint dependencies and config
1 parent def205e commit dc23a85

File tree

5 files changed

+82
-92
lines changed

5 files changed

+82
-92
lines changed

.eslintrc

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,21 @@
11
{
2+
"root": true,
23
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"project": ["./tsconfig.json"]
6+
},
7+
"plugins": ["@typescript-eslint"],
38
"extends": [
9+
"eslint:recommended",
10+
"plugin:@typescript-eslint/recommended",
11+
"plugin:@typescript-eslint/recommended-requiring-type-checking",
412
"standard",
13+
"standard-jsx",
514
"standard-react",
6-
"prettier",
7-
"plugin:@typescript-eslint/eslint-recommended"
15+
"prettier"
816
],
917
"env": {
10-
"node": true
11-
},
12-
"parserOptions": {
13-
"ecmaVersion": 2020,
14-
"ecmaFeatures": {
15-
"legacyDecorators": true,
16-
"jsx": true
17-
}
18-
},
19-
"settings": {
20-
"react": {
21-
"version": "16"
22-
}
23-
},
24-
"rules": {
25-
"space-before-function-paren": 0,
26-
"react/prop-types": 0,
27-
"react/jsx-handler-names": 0,
28-
"react/jsx-fragments": 0,
29-
"react/no-unused-prop-types": 0,
30-
"import/export": 0
18+
"browser": true,
19+
"jest": true
3120
}
3221
}

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
5050
"test:watch": "react-scripts test --env=jsdom",
5151
"release": "npm run test && npm run prepare && dotenv release-it",
52-
"lint": "eslint . --ext .js,.ts,.tsx",
53-
"format": "prettier --write {src,playground}/**/*.{ts,tsx}",
54-
"format:check": "prettier --check {src,playground}/**/*.{ts,tsx}",
52+
"lint": "eslint src --ext .js,.ts,.tsx",
53+
"format": "prettier --write src",
54+
"format:check": "prettier --check src",
5555
"storybook": "start-storybook -p 6006",
5656
"storybook:build": "build-storybook"
5757
},
@@ -78,22 +78,21 @@
7878
"@types/node": "^18.7.18",
7979
"@types/react": "^18.0.20",
8080
"@types/react-dom": "^18.0.6",
81-
"@typescript-eslint/eslint-plugin": "^5.18.0",
82-
"@typescript-eslint/parser": "^5.18.0",
83-
"babel-eslint": "^10.0.3",
81+
"@typescript-eslint/eslint-plugin": "^5.38.0",
82+
"@typescript-eslint/parser": "^5.38.0",
8483
"babel-loader": "^8.2.5",
8584
"cross-env": "^7.0.3",
8685
"dotenv-cli": "^6.0.0",
87-
"eslint": "^8.12.0",
86+
"eslint": "^8.23.1",
8887
"eslint-config-prettier": "^8.5.0",
89-
"eslint-config-standard": "^16.0.3",
88+
"eslint-config-standard": "^17.0.0",
89+
"eslint-config-standard-jsx": "^11.0.0",
9090
"eslint-config-standard-react": "^11.0.1",
91-
"eslint-plugin-import": "^2.25.4",
91+
"eslint-plugin-import": "^2.26.0",
92+
"eslint-plugin-n": "^15.2.5",
9293
"eslint-plugin-node": "^11.1.0",
93-
"eslint-plugin-prettier": "^4.0.0",
94-
"eslint-plugin-promise": "^6.0.0",
95-
"eslint-plugin-react": "^7.29.4",
96-
"eslint-plugin-standard": "^4.1.0",
94+
"eslint-plugin-promise": "^6.0.1",
95+
"eslint-plugin-react": "^7.31.8",
9796
"npm-run-all": "^4.1.5",
9897
"postcss": "^8.4.16",
9998
"prettier": "^2.7.1",

src/index.stories.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ export default {
1212
} as ComponentMeta<typeof ReactInputVerificationCode>;
1313

1414
const Template: ComponentStory<typeof ReactInputVerificationCode> = (args) => (
15-
<ReactInputVerificationCode onChange={console.log} {...args} />
15+
<ReactInputVerificationCode
16+
onChange={(value) => console.log(value)}
17+
onCompleted={(value) => console.log(value)}
18+
{...args}
19+
/>
1620
);
1721

1822
export const Default = Template.bind({});

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export interface ReactInputVerificationCodeProps {
2424
const ReactInputVerificationCode = ({
2525
autoFocus = false,
2626
length = 4,
27-
onChange = () => {},
28-
onCompleted = () => {},
27+
onChange = () => null,
28+
onCompleted = () => null,
2929
placeholder = '·',
3030
value: defaultValue = '',
3131
dataCy = 'verification-code',

yarn.lock

Lines changed: 51 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
chalk "^2.0.0"
309309
js-tokens "^4.0.0"
310310

311-
"@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.1", "@babel/parser@^7.7.0":
311+
"@babel/parser@^7.12.11", "@babel/parser@^7.12.7", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.1":
312312
version "7.19.1"
313313
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.1.tgz#6f6d6c2e621aad19a92544cc217ed13f1aac5b4c"
314314
integrity sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==
@@ -1099,7 +1099,7 @@
10991099
"@babel/parser" "^7.18.10"
11001100
"@babel/types" "^7.18.10"
11011101

1102-
"@babel/traverse@^7.1.6", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.7.0":
1102+
"@babel/traverse@^7.1.6", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1":
11031103
version "7.19.1"
11041104
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.1.tgz#0fafe100a8c2a603b4718b1d9bf2568d1d193347"
11051105
integrity sha512-0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA==
@@ -1115,7 +1115,7 @@
11151115
debug "^4.1.0"
11161116
globals "^11.1.0"
11171117

1118-
"@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
1118+
"@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.4.4":
11191119
version "7.19.0"
11201120
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600"
11211121
integrity sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==
@@ -2896,7 +2896,7 @@
28962896
dependencies:
28972897
"@types/yargs-parser" "*"
28982898

2899-
"@typescript-eslint/eslint-plugin@^5.18.0":
2899+
"@typescript-eslint/eslint-plugin@^5.38.0":
29002900
version "5.38.0"
29012901
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.38.0.tgz#ac919a199548861012e8c1fb2ec4899ac2bc22ae"
29022902
integrity sha512-GgHi/GNuUbTOeoJiEANi0oI6fF3gBQc3bGFYj40nnAPCbhrtEDf2rjBmefFadweBmO1Du1YovHeDP2h5JLhtTQ==
@@ -2910,7 +2910,7 @@
29102910
semver "^7.3.7"
29112911
tsutils "^3.21.0"
29122912

2913-
"@typescript-eslint/parser@^5.18.0":
2913+
"@typescript-eslint/parser@^5.38.0":
29142914
version "5.38.0"
29152915
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.38.0.tgz#5a59a1ff41a7b43aacd1bb2db54f6bf1c02b2ff8"
29162916
integrity sha512-/F63giJGLDr0ms1Cr8utDAxP2SPiglaD6V+pCOcG35P2jCqdfR7uuEhz1GIC3oy4hkUF8xA1XSXmd9hOh/a5EA==
@@ -3656,18 +3656,6 @@ autoprefixer@^9.8.6:
36563656
postcss "^7.0.32"
36573657
postcss-value-parser "^4.1.0"
36583658

3659-
babel-eslint@^10.0.3:
3660-
version "10.1.0"
3661-
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
3662-
integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
3663-
dependencies:
3664-
"@babel/code-frame" "^7.0.0"
3665-
"@babel/parser" "^7.7.0"
3666-
"@babel/traverse" "^7.7.0"
3667-
"@babel/types" "^7.7.0"
3668-
eslint-visitor-keys "^1.0.0"
3669-
resolve "^1.12.0"
3670-
36713659
babel-loader@^8.0.0, babel-loader@^8.2.5:
36723660
version "8.2.5"
36733661
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e"
@@ -4052,6 +4040,13 @@ builtin-status-codes@^3.0.0:
40524040
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
40534041
integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==
40544042

4043+
builtins@^5.0.1:
4044+
version "5.0.1"
4045+
resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9"
4046+
integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==
4047+
dependencies:
4048+
semver "^7.0.0"
4049+
40554050
bytes@3.0.0:
40564051
version "3.0.0"
40574052
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -5539,15 +5534,20 @@ eslint-config-prettier@^8.5.0:
55395534
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
55405535
integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
55415536

5537+
eslint-config-standard-jsx@^11.0.0:
5538+
version "11.0.0"
5539+
resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz#70852d395731a96704a592be5b0bfaccfeded239"
5540+
integrity sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==
5541+
55425542
eslint-config-standard-react@^11.0.1:
55435543
version "11.0.1"
55445544
resolved "https://registry.yarnpkg.com/eslint-config-standard-react/-/eslint-config-standard-react-11.0.1.tgz#1f488e0062c1e21c4c8584551619f11750658f55"
55455545
integrity sha512-4WlBynOqBZJRaX81CBcIGDHqUiqxvw4j/DbEIICz8QkMs3xEncoPgAoysiqCSsg71X92uhaBc8sgqB96smaMmg==
55465546

5547-
eslint-config-standard@^16.0.3:
5548-
version "16.0.3"
5549-
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz#6c8761e544e96c531ff92642eeb87842b8488516"
5550-
integrity sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==
5547+
eslint-config-standard@^17.0.0:
5548+
version "17.0.0"
5549+
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz#fd5b6cf1dcf6ba8d29f200c461de2e19069888cf"
5550+
integrity sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==
55515551

55525552
eslint-import-resolver-node@^0.3.6:
55535553
version "0.3.6"
@@ -5572,7 +5572,15 @@ eslint-plugin-es@^3.0.0:
55725572
eslint-utils "^2.0.0"
55735573
regexpp "^3.0.0"
55745574

5575-
eslint-plugin-import@^2.25.4:
5575+
eslint-plugin-es@^4.1.0:
5576+
version "4.1.0"
5577+
resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz#f0822f0c18a535a97c3e714e89f88586a7641ec9"
5578+
integrity sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==
5579+
dependencies:
5580+
eslint-utils "^2.0.0"
5581+
regexpp "^3.0.0"
5582+
5583+
eslint-plugin-import@^2.26.0:
55765584
version "2.26.0"
55775585
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
55785586
integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
@@ -5591,6 +5599,20 @@ eslint-plugin-import@^2.25.4:
55915599
resolve "^1.22.0"
55925600
tsconfig-paths "^3.14.1"
55935601

5602+
eslint-plugin-n@^15.2.5:
5603+
version "15.2.5"
5604+
resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.2.5.tgz#aa7ff8d45bb8bf2df8ea3b7d3774ae570cb794b8"
5605+
integrity sha512-8+BYsqiyZfpu6NXmdLOXVUfk8IocpCjpd8nMRRH0A9ulrcemhb2VI9RSJMEy5udx++A/YcVPD11zT8hpFq368g==
5606+
dependencies:
5607+
builtins "^5.0.1"
5608+
eslint-plugin-es "^4.1.0"
5609+
eslint-utils "^3.0.0"
5610+
ignore "^5.1.1"
5611+
is-core-module "^2.10.0"
5612+
minimatch "^3.1.2"
5613+
resolve "^1.22.1"
5614+
semver "^7.3.7"
5615+
55945616
eslint-plugin-node@^11.1.0:
55955617
version "11.1.0"
55965618
resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d"
@@ -5603,19 +5625,12 @@ eslint-plugin-node@^11.1.0:
56035625
resolve "^1.10.1"
56045626
semver "^6.1.0"
56055627

5606-
eslint-plugin-prettier@^4.0.0:
5607-
version "4.2.1"
5608-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b"
5609-
integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==
5610-
dependencies:
5611-
prettier-linter-helpers "^1.0.0"
5612-
5613-
eslint-plugin-promise@^6.0.0:
5628+
eslint-plugin-promise@^6.0.1:
56145629
version "6.0.1"
56155630
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.0.1.tgz#a8cddf96a67c4059bdabf4d724a29572188ae423"
56165631
integrity sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==
56175632

5618-
eslint-plugin-react@^7.29.4:
5633+
eslint-plugin-react@^7.31.8:
56195634
version "7.31.8"
56205635
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz#3a4f80c10be1bcbc8197be9e8b641b2a3ef219bf"
56215636
integrity sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==
@@ -5635,11 +5650,6 @@ eslint-plugin-react@^7.29.4:
56355650
semver "^6.3.0"
56365651
string.prototype.matchall "^4.0.7"
56375652

5638-
eslint-plugin-standard@^4.1.0:
5639-
version "4.1.0"
5640-
resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz#0c3bf3a67e853f8bbbc580fb4945fbf16f41b7c5"
5641-
integrity sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==
5642-
56435653
eslint-scope@5.1.1, eslint-scope@^5.1.1:
56445654
version "5.1.1"
56455655
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
@@ -5678,7 +5688,7 @@ eslint-utils@^3.0.0:
56785688
dependencies:
56795689
eslint-visitor-keys "^2.0.0"
56805690

5681-
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
5691+
eslint-visitor-keys@^1.1.0:
56825692
version "1.3.0"
56835693
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
56845694
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
@@ -5693,7 +5703,7 @@ eslint-visitor-keys@^3.3.0:
56935703
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
56945704
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
56955705

5696-
eslint@^8.12.0:
5706+
eslint@^8.23.1:
56975707
version "8.23.1"
56985708
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.23.1.tgz#cfd7b3f7fdd07db8d16b4ac0516a29c8d8dca5dc"
56995709
integrity sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg==
@@ -5985,11 +5995,6 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
59855995
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
59865996
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
59875997

5988-
fast-diff@^1.1.2:
5989-
version "1.2.0"
5990-
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
5991-
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
5992-
59935998
fast-glob@^2.2.6:
59945999
version "2.2.7"
59956000
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
@@ -7283,7 +7288,7 @@ is-ci@^2.0.0:
72837288
dependencies:
72847289
ci-info "^2.0.0"
72857290

7286-
is-core-module@^2.8.1, is-core-module@^2.9.0:
7291+
is-core-module@^2.10.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
72877292
version "2.10.0"
72887293
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
72897294
integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==
@@ -9798,13 +9803,6 @@ prepend-http@^2.0.0:
97989803
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
97999804
integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==
98009805

9801-
prettier-linter-helpers@^1.0.0:
9802-
version "1.0.0"
9803-
resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
9804-
integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
9805-
dependencies:
9806-
fast-diff "^1.1.2"
9807-
98089806
"prettier@>=2.2.1 <=2.3.0":
98099807
version "2.3.0"
98109808
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.0.tgz#b6a5bf1284026ae640f17f7ff5658a7567fc0d18"
@@ -10565,7 +10563,7 @@ resolve-url@^0.2.1:
1056510563
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
1056610564
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
1056710565

10568-
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.3.2:
10566+
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0, resolve@^1.22.1, resolve@^1.3.2:
1056910567
version "1.22.1"
1057010568
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
1057110569
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
@@ -10823,7 +10821,7 @@ semver@^6.0.0, semver@^6.1.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semve
1082310821
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1082410822
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1082510823

10826-
semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7:
10824+
semver@^7.0.0, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7:
1082710825
version "7.3.7"
1082810826
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
1082910827
integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==

0 commit comments

Comments
 (0)