Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Node.js v12 #1847

Merged
merged 2 commits into from May 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 1 addition & 6 deletions .circleci/config.yml
Expand Up @@ -5,7 +5,6 @@ workflows:
- eslint-v6
- eslint-v7
- ts-eslint-v4
- node-v12
- node-v14
- node-v16
- lint
Expand Down Expand Up @@ -36,7 +35,7 @@ jobs:

eslint-v6:
docker:
- image: node:12
- image: node:14
steps:
- run:
name: Versions
Expand Down Expand Up @@ -88,10 +87,6 @@ jobs:
- run:
name: Test
command: npm test
node-v12:
<<: *node-base
docker:
- image: node:12
node-v14:
<<: *node-base
docker:
Expand Down
4 changes: 2 additions & 2 deletions .eslintrc.js
Expand Up @@ -3,7 +3,7 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2018
ecmaVersion: 'latest'
},
env: {
es6: true,
Expand Down Expand Up @@ -124,7 +124,7 @@ module.exports = {
files: ['./**/*.vue'],
parser: require.resolve('vue-eslint-parser'),
parserOptions: {
ecmaVersion: 2020,
ecmaVersion: 'latest',
sourceType: 'module'
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/.vuepress/components/eslint-code-block.vue
Expand Up @@ -90,7 +90,7 @@ export default {
rules: this.rules,
parser: 'vue-eslint-parser',
parserOptions: {
ecmaVersion: 2020,
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
jsx: true
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/README.md
Expand Up @@ -23,7 +23,7 @@ yarn add -D eslint eslint-plugin-vue
::: tip Requirements

- ESLint v6.2.0 and above
- Node.js v12.22.x, v14.17.x, v16.x and above
- Node.js v14.17.x, v16.x and above

:::

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,7 +48,7 @@
"url": "https://github.com/vuejs/eslint-plugin-vue/issues"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
Expand Down