Skip to content

Commit

Permalink
chore!: drop Node.js v14.x support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This drops official support for Node.js v14.x, which is now at end-of-life.
  • Loading branch information
boneskull committed Jul 24, 2023
1 parent 126d60c commit 03f81be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [14, 16, 18, 20]
node_version: [16, 18, 20]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ That's it. That's the project.

Run `npm install midnight-smoker --save-dev`.

- Minimum Node.js versions supported: `^14.17.0 || ^16.13.0 || >=18.0.0`
- Minimum Node.js versions supported: `^16.13.0 || >=18.0.0`
- Minimum `npm` version supported: `v7.0.0`

## Resources
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"unexpected-snapshot": "2.1.0"
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"node": "^16.13.0 || >=18.0.0",
"npm": ">=7"
}
}

0 comments on commit 03f81be

Please sign in to comment.