Skip to content

Commit ece4e79

Browse files
committed
chore: bump typescript eslint config to fix project scaffolding errors
Previously it would throw an error on `const { defineConfig } = require('@vue/cli-service')`
1 parent d433ffe commit ece4e79

File tree

3 files changed

+51
-51
lines changed

3 files changed

+51
-51
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"devDependencies": {
3333
"@babel/core": "^7.12.16",
3434
"@babel/eslint-parser": "^7.12.16",
35-
"@typescript-eslint/eslint-plugin": "^5.2.0",
36-
"@typescript-eslint/parser": "^5.2.0",
35+
"@typescript-eslint/eslint-plugin": "^5.4.0",
36+
"@typescript-eslint/parser": "^5.4.0",
3737
"@vue/eslint-config-airbnb": "^6.0.0",
3838
"@vue/eslint-config-standard": "^6.1.0",
39-
"@vue/eslint-config-typescript": "^9.0.1",
39+
"@vue/eslint-config-typescript": "^9.1.0",
4040
"babel-core": "7.0.0-bridge.0",
4141
"babel-jest": "^27.0.6",
4242
"chromedriver": "^94.0.0",

packages/@vue/cli-plugin-eslint/eslintDeps.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ const DEPS_MAP = {
2020
'eslint-plugin-promise': '^5.1.0'
2121
},
2222
typescript: {
23-
'@vue/eslint-config-typescript': '^9.0.1',
24-
'@typescript-eslint/eslint-plugin': '^5.2.0',
25-
'@typescript-eslint/parser': '^5.2.0'
23+
'@vue/eslint-config-typescript': '^9.1.0',
24+
'@typescript-eslint/eslint-plugin': '^5.4.0',
25+
'@typescript-eslint/parser': '^5.4.0'
2626
}
2727
}
2828

yarn.lock

+45-45
Original file line numberDiff line numberDiff line change
@@ -3804,74 +3804,74 @@
38043804
resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.3.tgz#781d360c282436494b32fe7d9f7f8e64b3118aa3"
38053805
integrity sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==
38063806

3807-
"@typescript-eslint/eslint-plugin@^5.2.0":
3808-
version "5.3.0"
3809-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.3.0.tgz#a55ae72d28ffeb6badd817fe4566c9cced1f5e29"
3810-
integrity sha512-ARUEJHJrq85aaiCqez7SANeahDsJTD3AEua34EoQN9pHS6S5Bq9emcIaGGySt/4X2zSi+vF5hAH52sEen7IO7g==
3807+
"@typescript-eslint/eslint-plugin@^5.4.0":
3808+
version "5.4.0"
3809+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.4.0.tgz#05e711a2e7b68342661fde61bccbd1531c19521a"
3810+
integrity sha512-9/yPSBlwzsetCsGEn9j24D8vGQgJkOTr4oMLas/w886ZtzKIs1iyoqFrwsX2fqYEeUwsdBpC21gcjRGo57u0eg==
38113811
dependencies:
3812-
"@typescript-eslint/experimental-utils" "5.3.0"
3813-
"@typescript-eslint/scope-manager" "5.3.0"
3812+
"@typescript-eslint/experimental-utils" "5.4.0"
3813+
"@typescript-eslint/scope-manager" "5.4.0"
38143814
debug "^4.3.2"
38153815
functional-red-black-tree "^1.0.1"
38163816
ignore "^5.1.8"
38173817
regexpp "^3.2.0"
38183818
semver "^7.3.5"
38193819
tsutils "^3.21.0"
38203820

3821-
"@typescript-eslint/experimental-utils@5.3.0":
3822-
version "5.3.0"
3823-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.3.0.tgz#ee56b4957547ed2b0fc7451205e41502e664f546"
3824-
integrity sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==
3821+
"@typescript-eslint/experimental-utils@5.4.0":
3822+
version "5.4.0"
3823+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.4.0.tgz#238a7418d2da3b24874ba35385eb21cc61d2a65e"
3824+
integrity sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==
38253825
dependencies:
38263826
"@types/json-schema" "^7.0.9"
3827-
"@typescript-eslint/scope-manager" "5.3.0"
3828-
"@typescript-eslint/types" "5.3.0"
3829-
"@typescript-eslint/typescript-estree" "5.3.0"
3827+
"@typescript-eslint/scope-manager" "5.4.0"
3828+
"@typescript-eslint/types" "5.4.0"
3829+
"@typescript-eslint/typescript-estree" "5.4.0"
38303830
eslint-scope "^5.1.1"
38313831
eslint-utils "^3.0.0"
38323832

3833-
"@typescript-eslint/parser@^5.2.0":
3834-
version "5.3.0"
3835-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.3.0.tgz#7879f15e26d370ed3f653fb7dd06479531ed3ab9"
3836-
integrity sha512-rKu/yAReip7ovx8UwOAszJVO5MgBquo8WjIQcp1gx4pYQCwYzag+I5nVNHO4MqyMkAo0gWt2gWUi+36gWAVKcw==
3833+
"@typescript-eslint/parser@^5.4.0":
3834+
version "5.4.0"
3835+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.4.0.tgz#3aa83ce349d66e39b84151f6d5464928044ca9e3"
3836+
integrity sha512-JoB41EmxiYpaEsRwpZEYAJ9XQURPFer8hpkIW9GiaspVLX8oqbqNM8P4EP8HOZg96yaALiLEVWllA2E8vwsIKw==
38373837
dependencies:
3838-
"@typescript-eslint/scope-manager" "5.3.0"
3839-
"@typescript-eslint/types" "5.3.0"
3840-
"@typescript-eslint/typescript-estree" "5.3.0"
3838+
"@typescript-eslint/scope-manager" "5.4.0"
3839+
"@typescript-eslint/types" "5.4.0"
3840+
"@typescript-eslint/typescript-estree" "5.4.0"
38413841
debug "^4.3.2"
38423842

3843-
"@typescript-eslint/scope-manager@5.3.0":
3844-
version "5.3.0"
3845-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.3.0.tgz#97d0ccc7c9158e89e202d5e24ce6ba49052d432e"
3846-
integrity sha512-22Uic9oRlTsPppy5Tcwfj+QET5RWEnZ5414Prby465XxQrQFZ6nnm5KnXgnsAJefG4hEgMnaxTB3kNEyjdjj6A==
3843+
"@typescript-eslint/scope-manager@5.4.0":
3844+
version "5.4.0"
3845+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.4.0.tgz#aaab08415f4a9cf32b870c7750ae8ba4607126a1"
3846+
integrity sha512-pRxFjYwoi8R+n+sibjgF9iUiAELU9ihPBtHzocyW8v8D8G8KeQvXTsW7+CBYIyTYsmhtNk50QPGLE3vrvhM5KA==
38473847
dependencies:
3848-
"@typescript-eslint/types" "5.3.0"
3849-
"@typescript-eslint/visitor-keys" "5.3.0"
3848+
"@typescript-eslint/types" "5.4.0"
3849+
"@typescript-eslint/visitor-keys" "5.4.0"
38503850

3851-
"@typescript-eslint/types@5.3.0":
3852-
version "5.3.0"
3853-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.3.0.tgz#af29fd53867c2df0028c57c36a655bd7e9e05416"
3854-
integrity sha512-fce5pG41/w8O6ahQEhXmMV+xuh4+GayzqEogN24EK+vECA3I6pUwKuLi5QbXO721EMitpQne5VKXofPonYlAQg==
3851+
"@typescript-eslint/types@5.4.0":
3852+
version "5.4.0"
3853+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.4.0.tgz#b1c130f4b381b77bec19696c6e3366f9781ce8f2"
3854+
integrity sha512-GjXNpmn+n1LvnttarX+sPD6+S7giO+9LxDIGlRl4wK3a7qMWALOHYuVSZpPTfEIklYjaWuMtfKdeByx0AcaThA==
38553855

3856-
"@typescript-eslint/typescript-estree@5.3.0":
3857-
version "5.3.0"
3858-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.3.0.tgz#4f68ddd46dc2983182402d2ab21fb44ad94988cf"
3859-
integrity sha512-FJ0nqcaUOpn/6Z4Jwbtf+o0valjBLkqc3MWkMvrhA2TvzFXtcclIM8F4MBEmYa2kgcI8EZeSAzwoSrIC8JYkug==
3856+
"@typescript-eslint/typescript-estree@5.4.0":
3857+
version "5.4.0"
3858+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.4.0.tgz#fe524fb308973c68ebeb7428f3b64499a6ba5fc0"
3859+
integrity sha512-nhlNoBdhKuwiLMx6GrybPT3SFILm5Gij2YBdPEPFlYNFAXUJWX6QRgvi/lwVoadaQEFsizohs6aFRMqsXI2ewA==
38603860
dependencies:
3861-
"@typescript-eslint/types" "5.3.0"
3862-
"@typescript-eslint/visitor-keys" "5.3.0"
3861+
"@typescript-eslint/types" "5.4.0"
3862+
"@typescript-eslint/visitor-keys" "5.4.0"
38633863
debug "^4.3.2"
38643864
globby "^11.0.4"
38653865
is-glob "^4.0.3"
38663866
semver "^7.3.5"
38673867
tsutils "^3.21.0"
38683868

3869-
"@typescript-eslint/visitor-keys@5.3.0":
3870-
version "5.3.0"
3871-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.3.0.tgz#a6258790f3b7b2547f70ed8d4a1e0c3499994523"
3872-
integrity sha512-oVIAfIQuq0x2TFDNLVavUn548WL+7hdhxYn+9j3YdJJXB7mH9dAmZNJsPDa7Jc+B9WGqoiex7GUDbyMxV0a/aw==
3869+
"@typescript-eslint/visitor-keys@5.4.0":
3870+
version "5.4.0"
3871+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.4.0.tgz#09bc28efd3621f292fe88c86eef3bf4893364c8c"
3872+
integrity sha512-PVbax7MeE7tdLfW5SA0fs8NGVVr+buMPrcj+CWYWPXsZCH8qZ1THufDzbXm1xrZ2b2PA1iENJ0sRq5fuUtvsJg==
38733873
dependencies:
3874-
"@typescript-eslint/types" "5.3.0"
3874+
"@typescript-eslint/types" "5.4.0"
38753875
eslint-visitor-keys "^3.0.0"
38763876

38773877
@@ -4127,10 +4127,10 @@
41274127
eslint-import-resolver-node "^0.3.4"
41284128
eslint-import-resolver-webpack "^0.13.1"
41294129

4130-
"@vue/eslint-config-typescript@^9.0.1":
4131-
version "9.0.1"
4132-
resolved "https://registry.yarnpkg.com/@vue/eslint-config-typescript/-/eslint-config-typescript-9.0.1.tgz#692fc007cf20012882ac7466b69c3967a0b9809b"
4133-
integrity sha512-LmhEEy7xYLpPQDQnFhRP3ZEd9zFFKsQX7/qF3AKcNxTrgc4E0aASWK0Ciinlnw17hXNtq8LZKd3mYgtMigwxVg==
4130+
"@vue/eslint-config-typescript@^9.1.0":
4131+
version "9.1.0"
4132+
resolved "https://registry.yarnpkg.com/@vue/eslint-config-typescript/-/eslint-config-typescript-9.1.0.tgz#b98a64352b312085444a08b98728962e2a8425ab"
4133+
integrity sha512-j/852/ZYQ5wDvCD3HE2q4uqJwJAceer2FwoEch1nFo+zTOsPrbzbE3cuWIs3kvu5hdFsGTMYwRwjI6fqZKDMxQ==
41344134
dependencies:
41354135
vue-eslint-parser "^8.0.0"
41364136

0 commit comments

Comments
 (0)