Skip to content

Commit

Permalink
Remove Node.js less than 18.12.0 support
Browse files Browse the repository at this point in the history
The `engines.node` field in `package.json` is the same as Stylelint's one:
https://github.com/stylelint/stylelint/blob/16.0.1/package.json#L245-L247
  • Loading branch information
ybiquitous committed Dec 8, 2023
1 parent a06cccf commit ebd634a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ on:
branches:
- main
pull_request:
branches:
- '**'

jobs:
lint:
uses: stylelint/.github/.github/workflows/lint.yml@main
test:
uses: stylelint/.github/.github/workflows/test.yml@main
with:
node-version: '["14", "16", "18", "20"]'
os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## Head

- Removed: Node.js less than 18.12.0 support.

## 0.3.0

- Added: `cosmiconfig`
- Added: `cosmiconfig`.

## 0.2.0

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
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
"vitest": "^0.31.4"
},
"engines": {
"node": "^14.18.0 || ^16.14.0 || >=18.0.0"
"node": ">=18.12.0"
}
}

0 comments on commit ebd634a

Please sign in to comment.