Skip to content

Commit

Permalink
Remove support for Node.js less than 18.12.0 (#85)
Browse files Browse the repository at this point in the history
Node.js 16 reaches End-of-Life.

Also, Stylelint 16.0.0 will have the same `engines.node` requirement.
See https://github.com/stylelint/stylelint/blob/16.0.0-2/package.json#L240-L242
  • Loading branch information
ybiquitous committed Dec 5, 2023
1 parent 27a208a commit 23c24b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/nodejs.yml
Expand Up @@ -14,5 +14,3 @@ jobs:

test:
uses: stylelint/.github/.github/workflows/test.yml@main
with:
node-version: '["14", "16", "18", "20"]'
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## Head

- Removed: support for Node.js less than `18.12.0`.

## 6.3.2

- Fixed: missing `getTestRuleConfigs` export.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -81,6 +81,6 @@
"jest": "^29.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.10.0"
"node": ">=18.12.0"
}
}

0 comments on commit 23c24b5

Please sign in to comment.