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

feat!: drop node.js < 16 #90

Merged
merged 1 commit into from Apr 18, 2023
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
9 changes: 0 additions & 9 deletions .github/workflows/CI.yml
Expand Up @@ -35,18 +35,9 @@ jobs:
node: [18.x]
include:
# run on node lts(ubuntu-latest)
- os: ubuntu-latest
node: "12.x"
eslint: "8.x"
- os: ubuntu-latest
node: "14.x"
eslint: "8.x"
- os: ubuntu-latest
node: "16.x"
eslint: "8.x"
- os: ubuntu-latest
node: "17.x"
eslint: "8.x"
- os: ubuntu-latest
node: "19.x"
eslint: "8.x"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ Additional ESLint's rules for Node.js
npm install --save-dev eslint eslint-plugin-n
```

- Requires Node.js `>=12.22.0`
- Requires Node.js `>=16.0.0`
- Requires ESLint `>=7.0.0`

**Note:** It recommends a use of [the "engines" field of package.json](https://docs.npmjs.com/files/package.json#engines). The "engines" field is used by `n/no-unsupported-features/*` rules.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"version": "15.6.1",
"description": "Additional ESLint's rules for Node.js",
"engines": {
"node": ">=12.22.0"
"node": ">=16.0.0"
},
"main": "lib/index.js",
"files": [
Expand Down