Skip to content

Commit b41ccbc

Browse files
renovate[bot]renovate-botclarkdo
authored
chore(deps): update devdependency @nuxtjs/eslint-config-typescript to v6 (#426)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Xin Du (Clark) <[email protected]>
1 parent 4dcfe49 commit b41ccbc

File tree

4 files changed

+63
-103
lines changed

4 files changed

+63
-103
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@nuxt/types": "^2.15.6",
4242
"@nuxt/typescript-build": "^2.0.3",
4343
"@nuxt/typescript-runtime": "^2.0.0",
44-
"@nuxtjs/eslint-config-typescript": "^4.0.0",
44+
"@nuxtjs/eslint-config-typescript": "^6.0.1",
4545
"@types/jest": "^26.0.23",
4646
"@types/sass": "^1.16.0",
4747
"codecov": "^3.8.2",

src/font.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function setupFont (this: ModuleThis, options: FontOptions) {
1111
const family = `${options.family}:100,300,400,500,700,900&display=swap`
1212

1313
/* istanbul ignore else */
14-
if (this.options.modules!.some(mod => mod === 'nuxt-webfontloader')) {
14+
if (this.options.modules!.includes('nuxt-webfontloader')) {
1515
this.options.webfontloader = this.options.webfontloader || {}
1616
this.options.webfontloader.google = this.options.webfontloader.google || {}
1717
this.options.webfontloader.google.families = [...this.options.webfontloader.google.families || [], family]

test/fixture/layouts/default.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@
7070
</v-app>
7171
</template>
7272

73-
<style scoped>
74-
</style>
75-
7673
<script>
7774
export default {
7875
data () {
@@ -101,3 +98,6 @@ export default {
10198
}
10299
}
103100
</script>
101+
102+
<style scoped>
103+
</style>

yarn.lock

Lines changed: 58 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,28 +1689,28 @@
16891689
webpack-node-externals "^3.0.0"
16901690
webpackbar "^4.0.0"
16911691

1692-
"@nuxtjs/eslint-config-typescript@^4.0.0":
1693-
version "4.0.0"
1694-
resolved "https://registry.yarnpkg.com/@nuxtjs/eslint-config-typescript/-/eslint-config-typescript-4.0.0.tgz#0873aab4ac74cb2b9d7f7b0f8bc9449a0f57a6a5"
1695-
integrity sha512-EZPPq1hKHKeu+k1cCxBXo2rMaCd8JWXxumU9/EGhXfSUbOX9DGtoFiZ1sQM3w5RE3YY/rlPGtd4VKWy+gIw/EQ==
1692+
"@nuxtjs/eslint-config-typescript@^6.0.1":
1693+
version "6.0.1"
1694+
resolved "https://registry.yarnpkg.com/@nuxtjs/eslint-config-typescript/-/eslint-config-typescript-6.0.1.tgz#11e91a5e25aca6855ec7525080da694c4b3cd4d4"
1695+
integrity sha512-ZK/C2ZtXrc2FlQwssc3gqc3K9RAtGF+OLGXRDtDxyrlhgPwAC4bc9McBGqUokdbE+pup0OA38PylPOhbWHZkrg==
16961696
dependencies:
1697-
"@nuxtjs/eslint-config" "4.0.0"
1698-
"@typescript-eslint/eslint-plugin" "^4.2.0"
1699-
"@typescript-eslint/parser" "^4.2.0"
1697+
"@nuxtjs/eslint-config" "6.0.1"
1698+
"@typescript-eslint/eslint-plugin" "^4.25.0"
1699+
"@typescript-eslint/parser" "^4.25.0"
17001700

1701-
"@nuxtjs/eslint-config@4.0.0":
1702-
version "4.0.0"
1703-
resolved "https://registry.yarnpkg.com/@nuxtjs/eslint-config/-/eslint-config-4.0.0.tgz#5e341d2221955bbcaf30b44796c65b522ed3e838"
1704-
integrity sha512-QBYC4KLf3KAHHhNuruH6n3wnnah1m5F3+gmbzUJbCkIxDn0rjrD1AzPGvqYAv8b5mh1JFgrkicD0mHmD0l4Meg==
1701+
"@nuxtjs/eslint-config@6.0.1":
1702+
version "6.0.1"
1703+
resolved "https://registry.yarnpkg.com/@nuxtjs/eslint-config/-/eslint-config-6.0.1.tgz#305450a71e362c26f99b3a7130be960015a96c9b"
1704+
integrity sha512-NISrmMx4J2usVDVLG7WFwTdfQaznHf/b2aKTb1o0TCxxXdY30UHLqEH+3MqpjY+0+UPM06YswFmOBjOg5y2BXQ==
17051705
dependencies:
1706-
eslint-config-standard "^14.1.1"
1707-
eslint-plugin-import "^2.22.0"
1708-
eslint-plugin-jest "^23.19.0"
1706+
eslint-config-standard "^16.0.3"
1707+
eslint-plugin-import "^2.23.3"
1708+
eslint-plugin-jest "^24.3.6"
17091709
eslint-plugin-node "^11.1.0"
1710-
eslint-plugin-promise "^4.2.1"
1711-
eslint-plugin-standard "^4.0.1"
1712-
eslint-plugin-unicorn "^22.0.0"
1713-
eslint-plugin-vue "^6.2.2"
1710+
eslint-plugin-promise "^5.1.0"
1711+
eslint-plugin-standard "^4.1.0"
1712+
eslint-plugin-unicorn "^28.0.2"
1713+
eslint-plugin-vue "^7.9.0"
17141714

17151715
"@nuxtjs/youch@^4.2.3":
17161716
version "4.2.3"
@@ -1911,7 +1911,7 @@
19111911
jest-diff "^26.0.0"
19121912
pretty-format "^26.0.0"
19131913

1914-
"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
1914+
"@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
19151915
version "7.0.7"
19161916
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
19171917
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
@@ -2129,7 +2129,7 @@
21292129
dependencies:
21302130
"@types/yargs-parser" "*"
21312131

2132-
"@typescript-eslint/eslint-plugin@^4.2.0":
2132+
"@typescript-eslint/eslint-plugin@^4.25.0":
21332133
version "4.26.1"
21342134
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.26.1.tgz#b9c7313321cb837e2bf8bebe7acc2220659e67d3"
21352135
integrity sha512-aoIusj/8CR+xDWmZxARivZjbMBQTT9dImUtdZ8tVCVRXgBUuuZyM5Of5A9D9arQPxbi/0rlJLcuArclz/rCMJw==
@@ -2143,7 +2143,7 @@
21432143
semver "^7.3.5"
21442144
tsutils "^3.21.0"
21452145

2146-
"@typescript-eslint/[email protected]":
2146+
"@typescript-eslint/[email protected]", "@typescript-eslint/experimental-utils@^4.0.1":
21472147
version "4.26.1"
21482148
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.26.1.tgz#a35980a2390da9232aa206b27f620eab66e94142"
21492149
integrity sha512-sQHBugRhrXzRCs9PaGg6rowie4i8s/iD/DpTB+EXte8OMDfdCG5TvO73XlO9Wc/zi0uyN4qOmX9hIjQEyhnbmQ==
@@ -2155,17 +2155,7 @@
21552155
eslint-scope "^5.1.1"
21562156
eslint-utils "^3.0.0"
21572157

2158-
"@typescript-eslint/experimental-utils@^2.5.0":
2159-
version "2.34.0"
2160-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"
2161-
integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==
2162-
dependencies:
2163-
"@types/json-schema" "^7.0.3"
2164-
"@typescript-eslint/typescript-estree" "2.34.0"
2165-
eslint-scope "^5.0.0"
2166-
eslint-utils "^2.0.0"
2167-
2168-
"@typescript-eslint/parser@^4.2.0":
2158+
"@typescript-eslint/parser@^4.25.0":
21692159
version "4.26.1"
21702160
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.26.1.tgz#cecfdd5eb7a5c13aabce1c1cfd7fbafb5a0f1e8e"
21712161
integrity sha512-q7F3zSo/nU6YJpPJvQveVlIIzx9/wu75lr6oDbDzoeIRWxpoc/HQ43G4rmMoCc5my/3uSj2VEpg/D83LYZF5HQ==
@@ -2188,19 +2178,6 @@
21882178
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.26.1.tgz#9e7c523f73c34b04a765e4167ca5650436ef1d38"
21892179
integrity sha512-STyMPxR3cS+LaNvS8yK15rb8Y0iL0tFXq0uyl6gY45glyI7w0CsyqyEXl/Fa0JlQy+pVANeK3sbwPneCbWE7yg==
21902180

2191-
"@typescript-eslint/[email protected]":
2192-
version "2.34.0"
2193-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5"
2194-
integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==
2195-
dependencies:
2196-
debug "^4.1.1"
2197-
eslint-visitor-keys "^1.1.0"
2198-
glob "^7.1.6"
2199-
is-glob "^4.0.1"
2200-
lodash "^4.17.15"
2201-
semver "^7.3.2"
2202-
tsutils "^3.17.1"
2203-
22042181
"@typescript-eslint/[email protected]":
22052182
version "4.26.1"
22062183
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.26.1.tgz#b2ce2e789233d62283fae2c16baabd4f1dbc9633"
@@ -4834,18 +4811,10 @@ escodegen@^2.0.0:
48344811
optionalDependencies:
48354812
source-map "~0.6.1"
48364813

4837-
eslint-ast-utils@^1.1.0:
4838-
version "1.1.0"
4839-
resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586"
4840-
integrity sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA==
4841-
dependencies:
4842-
lodash.get "^4.4.2"
4843-
lodash.zip "^4.2.0"
4844-
4845-
eslint-config-standard@^14.1.1:
4846-
version "14.1.1"
4847-
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz#830a8e44e7aef7de67464979ad06b406026c56ea"
4848-
integrity sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==
4814+
eslint-config-standard@^16.0.3:
4815+
version "16.0.3"
4816+
resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz#6c8761e544e96c531ff92642eeb87842b8488516"
4817+
integrity sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==
48494818

48504819
eslint-import-resolver-node@^0.3.4:
48514820
version "0.3.4"
@@ -4871,7 +4840,7 @@ eslint-plugin-es@^3.0.0:
48714840
eslint-utils "^2.0.0"
48724841
regexpp "^3.0.0"
48734842

4874-
eslint-plugin-import@^2.22.0:
4843+
eslint-plugin-import@^2.23.3:
48754844
version "2.23.4"
48764845
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"
48774846
integrity sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==
@@ -4892,12 +4861,12 @@ eslint-plugin-import@^2.22.0:
48924861
resolve "^1.20.0"
48934862
tsconfig-paths "^3.9.0"
48944863

4895-
eslint-plugin-jest@^23.19.0:
4896-
version "23.20.0"
4897-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.20.0.tgz#e1d69c75f639e99d836642453c4e75ed22da4099"
4898-
integrity sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==
4864+
eslint-plugin-jest@^24.3.6:
4865+
version "24.3.6"
4866+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.6.tgz#5f0ca019183c3188c5ad3af8e80b41de6c8e9173"
4867+
integrity sha512-WOVH4TIaBLIeCX576rLcOgjNXqP+jNlCiEmRgFTfQtJ52DpwnIQKAVGlGPAN7CZ33bW6eNfHD6s8ZbEUTQubJg==
48994868
dependencies:
4900-
"@typescript-eslint/experimental-utils" "^2.5.0"
4869+
"@typescript-eslint/experimental-utils" "^4.0.1"
49014870

49024871
eslint-plugin-node@^11.1.0:
49034872
version "11.1.0"
@@ -4911,43 +4880,44 @@ eslint-plugin-node@^11.1.0:
49114880
resolve "^1.10.1"
49124881
semver "^6.1.0"
49134882

4914-
eslint-plugin-promise@^4.2.1:
4915-
version "4.3.1"
4916-
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz#61485df2a359e03149fdafc0a68b0e030ad2ac45"
4917-
integrity sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==
4883+
eslint-plugin-promise@^5.1.0:
4884+
version "5.1.0"
4885+
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz#fb2188fb734e4557993733b41aa1a688f46c6f24"
4886+
integrity sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng==
49184887

4919-
eslint-plugin-standard@^4.0.1:
4888+
eslint-plugin-standard@^4.1.0:
49204889
version "4.1.0"
49214890
resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz#0c3bf3a67e853f8bbbc580fb4945fbf16f41b7c5"
49224891
integrity sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==
49234892

4924-
eslint-plugin-unicorn@^22.0.0:
4925-
version "22.0.0"
4926-
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-22.0.0.tgz#46a93d8de393b865e04c2057a4ed3510864dd3be"
4927-
integrity sha512-jXPOauNiVFYLr+AeU3l21Ao+iDl/G08vUWui21RCI2L1TJIIoJvAMjMR6I+QPKr8FgIumzuR6gzDKCtEx2IkzA==
4893+
eslint-plugin-unicorn@^28.0.2:
4894+
version "28.0.2"
4895+
resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-28.0.2.tgz#ab9884ebae04590ecd9c1c294330d889a74b7c37"
4896+
integrity sha512-k4AoFP7n8/oq6lBXkdc9Flid6vw2B8j7aXFCxgzJCyKvmaKrCUFb1TFPhG9eSJQFZowqmymMPRtl8oo9NKLUbw==
49284897
dependencies:
49294898
ci-info "^2.0.0"
49304899
clean-regexp "^1.0.0"
4931-
eslint-ast-utils "^1.1.0"
4932-
eslint-template-visitor "^2.2.1"
4900+
eslint-template-visitor "^2.2.2"
49334901
eslint-utils "^2.1.0"
4934-
import-modules "^2.0.0"
4902+
eslint-visitor-keys "^2.0.0"
4903+
import-modules "^2.1.0"
49354904
lodash "^4.17.20"
49364905
pluralize "^8.0.0"
49374906
read-pkg-up "^7.0.1"
4938-
regexp-tree "^0.1.21"
4907+
regexp-tree "^0.1.22"
49394908
reserved-words "^0.1.2"
49404909
safe-regex "^2.1.1"
4941-
semver "^7.3.2"
4910+
semver "^7.3.4"
49424911

4943-
eslint-plugin-vue@^6.2.2:
4944-
version "6.2.2"
4945-
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-6.2.2.tgz#27fecd9a3a24789b0f111ecdd540a9e56198e0fe"
4946-
integrity sha512-Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==
4912+
eslint-plugin-vue@^7.9.0:
4913+
version "7.11.1"
4914+
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.11.1.tgz#77eb4b44032d5cca79f9af21d06991d8694a314a"
4915+
integrity sha512-lbw3vkEAGqYjqd1HpPFWHXtYaS8mILTJ5KOpJfRxO3Fo7o0wCf1zD7vSOasbm6nTA9xIgvZQ4VcyGIzQXxznHw==
49474916
dependencies:
4917+
eslint-utils "^2.1.0"
49484918
natural-compare "^1.4.0"
4949-
semver "^5.6.0"
4950-
vue-eslint-parser "^7.0.0"
4919+
semver "^7.3.2"
4920+
vue-eslint-parser "^7.6.0"
49514921

49524922
eslint-scope@^4.0.3:
49534923
version "4.0.3"
@@ -4965,7 +4935,7 @@ eslint-scope@^5.0.0, eslint-scope@^5.1.1:
49654935
esrecurse "^4.3.0"
49664936
estraverse "^4.1.1"
49674937

4968-
eslint-template-visitor@^2.2.1:
4938+
eslint-template-visitor@^2.2.2:
49694939
version "2.3.2"
49704940
resolved "https://registry.yarnpkg.com/eslint-template-visitor/-/eslint-template-visitor-2.3.2.tgz#b52f96ff311e773a345d79053ccc78275bbc463d"
49714941
integrity sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==
@@ -6115,7 +6085,7 @@ import-local@^3.0.2:
61156085
pkg-dir "^4.2.0"
61166086
resolve-cwd "^3.0.0"
61176087

6118-
import-modules@^2.0.0:
6088+
import-modules@^2.1.0:
61196089
version "2.1.0"
61206090
resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-2.1.0.tgz#abe7df297cb6c1f19b57246eb8b8bd9664b6d8c2"
61216091
integrity sha512-8HEWcnkbGpovH9yInoisxaSoIg9Brbul+Ju3Kqe2UsYDUBJD/iQjSgEj0zPcTDPKfPp2fs5xlv1i+JSye/m1/A==
@@ -7310,11 +7280,6 @@ lodash.debounce@^4.0.8:
73107280
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
73117281
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
73127282

7313-
lodash.get@^4.4.2:
7314-
version "4.4.2"
7315-
resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
7316-
integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
7317-
73187283
lodash.ismatch@^4.4.0:
73197284
version "4.4.0"
73207285
resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
@@ -7360,11 +7325,6 @@ lodash.uniq@^4.5.0:
73607325
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
73617326
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
73627327

7363-
lodash.zip@^4.2.0:
7364-
version "4.2.0"
7365-
resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020"
7366-
integrity sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=
7367-
73687328
73697329
version "4.17.15"
73707330
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
@@ -9688,7 +9648,7 @@ regex-not@^1.0.0, regex-not@^1.0.2:
96889648
extend-shallow "^3.0.2"
96899649
safe-regex "^1.1.0"
96909650

9691-
regexp-tree@^0.1.21, regexp-tree@~0.1.1:
9651+
regexp-tree@^0.1.22, regexp-tree@~0.1.1:
96929652
version "0.1.23"
96939653
resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.23.tgz#8a8ce1cc5e971acef62213a7ecdb1f6e18a1f1b2"
96949654
integrity sha512-+7HWfb4Bvu8Rs2eQTUIpX9I/PlQkYOuTNbRpKLJlQpSgwSkzFYh+pUj0gtvglnOZLKB6YgnIgRuJ2/IlpL48qw==
@@ -11050,7 +11010,7 @@ tslib@^2.0.3:
1105011010
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
1105111011
integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==
1105211012

11053-
tsutils@^3.17.1, tsutils@^3.21.0:
11013+
tsutils@^3.21.0:
1105411014
version "3.21.0"
1105511015
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
1105611016
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
@@ -11391,7 +11351,7 @@ vue-client-only@^2.0.0:
1139111351
resolved "https://registry.yarnpkg.com/vue-client-only/-/vue-client-only-2.1.0.tgz#1a67a47b8ecacfa86d75830173fffee3bf8a4ee3"
1139211352
integrity sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==
1139311353

11394-
vue-eslint-parser@^7.0.0:
11354+
vue-eslint-parser@^7.6.0:
1139511355
version "7.6.0"
1139611356
resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz#01ea1a2932f581ff244336565d712801f8f72561"
1139711357
integrity sha512-QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA==

0 commit comments

Comments
 (0)