Skip to content

Commit 9c2ff09

Browse files
committed
Eslint: upgrade to version 8.0.0
See: - https://eslint.org/blog/2021/10/eslint-v8.0.0-released - https://eslint.org/docs/user-guide/migrating-to-8.0.0 Known unresolved issues (with low impact )that we decided to accept: - mysticatea/eslint-plugin-node#301 Known issues that need to be fixed first: - [x] wait for import-js/eslint-plugin-import#2191 to be released and merged here - [x] wait for gajus/eslint-plugin-flowtype#496 to be released and merged here - [x] wait for testing-library/eslint-plugin-testing-library#462 to be released and merged here - [ ] ~wait for mysticatea/eslint-plugin-node#294 to be released and merged here~ replaced (probably temporarily) with `eslint-plugin-n` which supports Eslint 8 - [x] wait for facebook/react#22248 to be released and merged here - [x] release minor/patch version of Adeira Eslint Config before merging this breaking change - [x] switch `NEXT_VERSION_ERROR` to `ERROR` (#3625)
1 parent 6f75e65 commit 9c2ff09

File tree

7 files changed

+84
-90
lines changed

7 files changed

+84
-90
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"@babel/eslint-parser": "^7.16.5",
1818
"babel-jest": "^27.4.5",
1919
"babel-loader": "^8.2.3",
20-
"eslint": "^7.32.0",
20+
"eslint": "^8.0.0",
21+
"eslint-formatter-codeframe": "^7.32.1",
2122
"flow-bin": "^0.168.0",
2223
"glob": "^7.2.0",
2324
"jest": "^27.4.5",

src/eslint-config-adeira/__tests__/__fixtures__/valid-eslint-examples/node/process-exit-as-throw.js

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ class Bar {}
77
// Normally, Eslint would complain because of `consistent-return` error, however,
88
// rule `node/process-exit-as-throw` makes sure this is not the case.
99
// See: https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/process-exit-as-throw.md
10+
11+
// TODO: the following `consistent-return` error is incorrect and should be removed once the following
12+
// issue is resolved: https://github.com/mysticatea/eslint-plugin-node/issues/301. We decided to
13+
// accept the low risk for now to ease migration to Eslint 8.
14+
// eslint-disable-next-line consistent-return
1015
export function foo(a: boolean): ?Bar {
1116
if (a) {
1217
return new Bar();

src/eslint-config-adeira/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
"snapshot-diff": "^0.9.0"
4343
},
4444
"peerDependencies": {
45-
"eslint": ">=7.24.0 <8.0.0"
45+
"eslint": ">=8.0.0"
4646
}
4747
}

src/eslint-fixtures-tester/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"@adeira/js": "^2.1.1",
1919
"@babel/eslint-parser": "^7.16.5",
2020
"@babel/runtime": "^7.16.5",
21-
"eslint": "^7.32.0",
21+
"eslint": "^8.0.0",
2222
"jest-docblock": "^27.4.0"
2323
},
2424
"peerDependencies": {
25-
"eslint": "^7.32.0"
25+
"eslint": "^8.0.0"
2626
}
2727
}

src/eslint-plugin-adeira/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@adeira/eslint-fixtures-tester": "0.1.0",
2323
"@adeira/flow-types-eslint": "0.0.0",
2424
"@babel/eslint-parser": "^7.16.5",
25-
"eslint": "^7.32.0"
25+
"eslint": "^8.0.0"
2626
},
2727
"peerDependencies": {
2828
"graphql": "^14.0.0 || ^15.0.0"

src/eslint-plugin-sx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"@adeira/flow-types-eslint": "0.0.0",
2727
"@babel/code-frame": "^7.16.0",
2828
"@babel/eslint-parser": "^7.16.5",
29-
"eslint": "^7.32.0",
29+
"eslint": "^8.0.0",
3030
"react": "^17.0.2"
3131
},
3232
"peerDependencies": {
3333
"@adeira/sx": "^0.28.0",
34-
"eslint": "^7.32.0"
34+
"eslint": "^8.0.0"
3535
}
3636
}

yarn.lock

+71-83
Original file line numberDiff line numberDiff line change
@@ -2137,14 +2137,14 @@
21372137
resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
21382138
integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
21392139

2140-
"@eslint/eslintrc@^0.4.3":
2141-
version "0.4.3"
2142-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
2143-
integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
2140+
"@eslint/eslintrc@^1.0.2":
2141+
version "1.0.2"
2142+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.0.2.tgz#6044884f7f93c4ecc2d1694c7486cce91ef8f746"
2143+
integrity sha512-x1ZXdEFsvTcnbTZgqcWUL9w2ybgZCw/qbKTPQnab+XnYA2bMQpJCh+/bBzCRfDJaJdlrrQlOk49jNtru9gL/6Q==
21442144
dependencies:
21452145
ajv "^6.12.4"
2146-
debug "^4.1.1"
2147-
espree "^7.3.0"
2146+
debug "^4.3.2"
2147+
espree "^9.0.0"
21482148
globals "^13.9.0"
21492149
ignore "^4.0.6"
21502150
import-fresh "^3.2.1"
@@ -2251,10 +2251,10 @@
22512251
dependencies:
22522252
"@hapi/hoek" "^9.0.0"
22532253

2254-
"@humanwhocodes/config-array@^0.5.0":
2255-
version "0.5.0"
2256-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
2257-
integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
2254+
"@humanwhocodes/config-array@^0.6.0":
2255+
version "0.6.0"
2256+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.6.0.tgz#b5621fdb3b32309d2d16575456cbc277fa8f021a"
2257+
integrity sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==
22582258
dependencies:
22592259
"@humanwhocodes/object-schema" "^1.2.0"
22602260
debug "^4.1.1"
@@ -4902,7 +4902,7 @@ acorn-walk@^8.0.0:
49024902
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.0.2.tgz#d4632bfc63fd93d0f15fd05ea0e984ffd3f5a8c3"
49034903
integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A==
49044904

4905-
[email protected], acorn@^8.0.4, acorn@^8.2.4, acorn@^8.4.1:
4905+
[email protected], acorn@^8.4.1, acorn@^8.5.0:
49064906
version "8.5.0"
49074907
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2"
49084908
integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==
@@ -4912,11 +4912,21 @@ acorn@^6.1.1, acorn@^6.4.1:
49124912
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
49134913
integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
49144914

4915-
acorn@^7.0.0, acorn@^7.1.1, acorn@^7.4.0, acorn@^7.4.1:
4915+
acorn@^7.0.0, acorn@^7.1.1, acorn@^7.4.1:
49164916
version "7.4.1"
49174917
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
49184918
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
49194919

4920+
acorn@^8.0.4:
4921+
version "8.1.0"
4922+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.1.0.tgz#52311fd7037ae119cbb134309e901aa46295b3fe"
4923+
integrity sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==
4924+
4925+
acorn@^8.2.4:
4926+
version "8.2.4"
4927+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0"
4928+
integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==
4929+
49204930
[email protected], address@^1.0.1, address@^1.1.2:
49214931
version "1.1.2"
49224932
resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
@@ -5004,16 +5014,6 @@ ajv@^8.0.0, ajv@^8.8.0:
50045014
require-from-string "^2.0.2"
50055015
uri-js "^4.2.2"
50065016

5007-
ajv@^8.0.1:
5008-
version "8.5.0"
5009-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz#695528274bcb5afc865446aa275484049a18ae4b"
5010-
integrity sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ==
5011-
dependencies:
5012-
fast-deep-equal "^3.1.1"
5013-
json-schema-traverse "^1.0.0"
5014-
require-from-string "^2.0.2"
5015-
uri-js "^4.2.2"
5016-
50175017
algoliasearch-helper@^3.5.5:
50185018
version "3.6.2"
50195019
resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.6.2.tgz#45e19b12589cfa0c611b573287f65266ea2cc14a"
@@ -5501,11 +5501,6 @@ ast-types@^0.14.2:
55015501
dependencies:
55025502
tslib "^2.0.1"
55035503

5504-
astral-regex@^2.0.0:
5505-
version "2.0.0"
5506-
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
5507-
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
5508-
55095504
async-each@^1.0.1:
55105505
version "1.0.3"
55115506
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
@@ -7946,10 +7941,10 @@ debug@2, [email protected], debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
79467941
dependencies:
79477942
ms "2.0.0"
79487943

7949-
debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2:
7950-
version "4.3.3"
7951-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
7952-
integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
7944+
debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2:
7945+
version "4.3.2"
7946+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
7947+
integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
79537948
dependencies:
79547949
ms "2.1.2"
79557950

@@ -8837,6 +8832,14 @@ eslint-config-prettier@^8.3.0:
88378832
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a"
88388833
integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
88398834

8835+
eslint-formatter-codeframe@^7.32.1:
8836+
version "7.32.1"
8837+
resolved "https://registry.yarnpkg.com/eslint-formatter-codeframe/-/eslint-formatter-codeframe-7.32.1.tgz#50ef4024e1a533709564b62263c90dbf668a1a00"
8838+
integrity sha512-DK/3Q3+zVKq/7PdSYiCxPrsDF8H/TRMK5n8Hziwr4IMkMy+XiKSwbpj25AdajS63I/B61Snetq4uVvX9fOLyAg==
8839+
dependencies:
8840+
"@babel/code-frame" "7.12.11"
8841+
chalk "^4.0.0"
8842+
88408843
eslint-import-resolver-node@^0.3.6:
88418844
version "0.3.6"
88428845
resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
@@ -9033,7 +9036,15 @@ eslint-scope@^4.0.3:
90339036
esrecurse "^4.1.0"
90349037
estraverse "^4.1.1"
90359038

9036-
eslint-utils@^2.0.0, eslint-utils@^2.1.0:
9039+
eslint-scope@^6.0.0:
9040+
version "6.0.0"
9041+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-6.0.0.tgz#9cf45b13c5ac8f3d4c50f46a5121f61b3e318978"
9042+
integrity sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==
9043+
dependencies:
9044+
esrecurse "^4.3.0"
9045+
estraverse "^5.2.0"
9046+
9047+
eslint-utils@^2.0.0:
90379048
version "2.1.0"
90389049
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
90399050
integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
@@ -9047,7 +9058,7 @@ eslint-utils@^3.0.0:
90479058
dependencies:
90489059
eslint-visitor-keys "^2.0.0"
90499060

9050-
eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
9061+
eslint-visitor-keys@^1.1.0:
90519062
version "1.3.0"
90529063
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
90539064
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
@@ -9062,60 +9073,58 @@ eslint-visitor-keys@^3.0.0:
90629073
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz#e32e99c6cdc2eb063f204eda5db67bfe58bb4186"
90639074
integrity sha512-mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q==
90649075

9065-
eslint@^7.32.0:
9066-
version "7.32.0"
9067-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
9068-
integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
9076+
eslint@^8.0.0:
9077+
version "8.0.0"
9078+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.0.0.tgz#2c2d0ac6353755667ac90c9ff4a9c1315e43fcff"
9079+
integrity sha512-03spzPzMAO4pElm44m60Nj08nYonPGQXmw6Ceai/S4QK82IgwWO1EXx1s9namKzVlbVu3Jf81hb+N+8+v21/HQ==
90699080
dependencies:
9070-
"@babel/code-frame" "7.12.11"
9071-
"@eslint/eslintrc" "^0.4.3"
9072-
"@humanwhocodes/config-array" "^0.5.0"
9081+
"@eslint/eslintrc" "^1.0.2"
9082+
"@humanwhocodes/config-array" "^0.6.0"
90739083
ajv "^6.10.0"
90749084
chalk "^4.0.0"
90759085
cross-spawn "^7.0.2"
9076-
debug "^4.0.1"
9086+
debug "^4.3.2"
90779087
doctrine "^3.0.0"
90789088
enquirer "^2.3.5"
90799089
escape-string-regexp "^4.0.0"
9080-
eslint-scope "^5.1.1"
9081-
eslint-utils "^2.1.0"
9082-
eslint-visitor-keys "^2.0.0"
9083-
espree "^7.3.1"
9090+
eslint-scope "^6.0.0"
9091+
eslint-utils "^3.0.0"
9092+
eslint-visitor-keys "^3.0.0"
9093+
espree "^9.0.0"
90849094
esquery "^1.4.0"
90859095
esutils "^2.0.2"
90869096
fast-deep-equal "^3.1.3"
90879097
file-entry-cache "^6.0.1"
90889098
functional-red-black-tree "^1.0.1"
9089-
glob-parent "^5.1.2"
9099+
glob-parent "^6.0.1"
90909100
globals "^13.6.0"
90919101
ignore "^4.0.6"
90929102
import-fresh "^3.0.0"
90939103
imurmurhash "^0.1.4"
90949104
is-glob "^4.0.0"
9095-
js-yaml "^3.13.1"
9105+
js-yaml "^4.1.0"
90969106
json-stable-stringify-without-jsonify "^1.0.1"
90979107
levn "^0.4.1"
90989108
lodash.merge "^4.6.2"
90999109
minimatch "^3.0.4"
91009110
natural-compare "^1.4.0"
91019111
optionator "^0.9.1"
91029112
progress "^2.0.0"
9103-
regexpp "^3.1.0"
9113+
regexpp "^3.2.0"
91049114
semver "^7.2.1"
91059115
strip-ansi "^6.0.0"
91069116
strip-json-comments "^3.1.0"
9107-
table "^6.0.9"
91089117
text-table "^0.2.0"
91099118
v8-compile-cache "^2.0.3"
91109119

9111-
espree@^7.3.0, espree@^7.3.1:
9112-
version "7.3.1"
9113-
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
9114-
integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
9120+
espree@^9.0.0:
9121+
version "9.0.0"
9122+
resolved "https://registry.yarnpkg.com/espree/-/espree-9.0.0.tgz#e90a2965698228502e771c7a58489b1a9d107090"
9123+
integrity sha512-r5EQJcYZ2oaGbeR0jR0fFVijGOcwai07/690YRXLINuhmVeRY4UKSAsQPe/0BNuDgwP7Ophoc1PRsr2E3tkbdQ==
91159124
dependencies:
9116-
acorn "^7.4.0"
9125+
acorn "^8.5.0"
91179126
acorn-jsx "^5.3.1"
9118-
eslint-visitor-keys "^1.3.0"
9127+
eslint-visitor-keys "^3.0.0"
91199128

91209129
esprima@^4.0.0, esprima@^4.0.1:
91219130
version "4.0.1"
@@ -12562,7 +12571,7 @@ js-yaml@^3.13.1:
1256212571
argparse "^1.0.7"
1256312572
esprima "^4.0.0"
1256412573

12565-
js-yaml@^4.0.0:
12574+
js-yaml@^4.0.0, js-yaml@^4.1.0:
1256612575
version "4.1.0"
1256712576
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1256812577
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
@@ -13027,11 +13036,6 @@ lodash.topath@^4.5.2:
1302713036
resolved "https://registry.yarnpkg.com/lodash.topath/-/lodash.topath-4.5.2.tgz#3616351f3bba61994a0931989660bd03254fd009"
1302813037
integrity sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=
1302913038

13030-
lodash.truncate@^4.4.2:
13031-
version "4.4.2"
13032-
resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
13033-
integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
13034-
1303513039
[email protected], lodash.uniq@^4.5.0:
1303613040
version "4.5.0"
1303713041
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
@@ -16105,11 +16109,16 @@ regexp.prototype.flags@^1.3.1:
1610516109
call-bind "^1.0.2"
1610616110
define-properties "^1.1.3"
1610716111

16108-
regexpp@^3.0.0, regexpp@^3.1.0:
16112+
regexpp@^3.0.0:
1610916113
version "3.1.0"
1611016114
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
1611116115
integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
1611216116

16117+
regexpp@^3.2.0:
16118+
version "3.2.0"
16119+
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
16120+
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
16121+
1611316122
regexpu-core@^4.5.4:
1611416123
version "4.8.0"
1611516124
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0"
@@ -17058,15 +17067,6 @@ slash@^3.0.0:
1705817067
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1705917068
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1706017069

17061-
slice-ansi@^4.0.0:
17062-
version "4.0.0"
17063-
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
17064-
integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
17065-
dependencies:
17066-
ansi-styles "^4.0.0"
17067-
astral-regex "^2.0.0"
17068-
is-fullwidth-code-point "^3.0.0"
17069-
1707017070
slide@^1.1.3:
1707117071
version "1.1.6"
1707217072
resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"
@@ -17832,18 +17832,6 @@ tabbable@^5.2.1:
1783217832
resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-5.2.1.tgz#e3fda7367ddbb172dcda9f871c0fdb36d1c4cd9c"
1783317833
integrity sha512-40pEZ2mhjaZzK0BnI+QGNjJO8UYx9pP5v7BGe17SORTO0OEuuaAwQTkAp8whcZvqon44wKFOikD+Al11K3JICQ==
1783417834

17835-
table@^6.0.9:
17836-
version "6.7.1"
17837-
resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2"
17838-
integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==
17839-
dependencies:
17840-
ajv "^8.0.1"
17841-
lodash.clonedeep "^4.5.0"
17842-
lodash.truncate "^4.4.2"
17843-
slice-ansi "^4.0.0"
17844-
string-width "^4.2.0"
17845-
strip-ansi "^6.0.0"
17846-
1784717835
tailwindcss@^2.2.19:
1784817836
version "2.2.19"
1784917837
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.2.19.tgz#540e464832cd462bb9649c1484b0a38315c2653c"

0 commit comments

Comments
 (0)