Skip to content

Commit 114313c

Browse files
authoredFeb 17, 2019
fix(cli-plugin-eslint): make eslint deps optional (#3068)
1. In @vue/cli-plugin-eslint 3.1.0+, eslint will be explicitly added to the project's package.json, so it is **optional**. 2. `optionalDependencies` will still be installed by npm by default, just no longer cause installation to fail when error happens. 3. ESLint v4 did cause weird errors sometimes, like `npm WARN ajv-keywords@2.1.1 requires a peer of ajv@^5.0.0 but none is installed.` Though this warning never caused any errors on my machine, I think it's good to make the plugin fail-safe.
1 parent f819f51 commit 114313c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎packages/@vue/cli-plugin-eslint/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@
2525
"dependencies": {
2626
"@vue/cli-shared-utils": "^3.4.0",
2727
"babel-eslint": "^10.0.1",
28-
"eslint": "^4.19.1",
2928
"eslint-loader": "^2.1.1",
30-
"eslint-plugin-vue": "^4.7.1",
3129
"globby": "^9.0.0",
3230
"webpack": ">=4 < 4.29"
31+
},
32+
"optionalDependencies": {
33+
"eslint": "^4.19.1",
34+
"eslint-plugin-vue": "^4.7.1"
3335
}
3436
}

‎packages/@vue/cli-service-global/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
"@vue/cli-service": "^3.4.0",
2929
"babel-eslint": "^10.0.1",
3030
"chalk": "^2.4.2",
31+
"eslint": "^4.19.1",
32+
"eslint-plugin-vue": "^4.7.1",
3133
"resolve": "^1.10.0",
3234
"vue": "^2.5.22",
3335
"vue-template-compiler": "^2.5.22"

0 commit comments

Comments
 (0)
Please sign in to comment.