Skip to content

Commit

Permalink
build: drop node 16 support (#483)
Browse files Browse the repository at this point in the history
BREACHANGE: node 16 is not supported.

close #482
  • Loading branch information
damingerdai authored Feb 28, 2024
1 parent 4ff3ade commit d4d4877
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
needs: [build]
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project needs to install the following software:
2. [Node](https://nodejs.org/)
3. [Yarn](https://classic.yarnpkg.com/lang/en/)

> Note: node >= 16.0.0
> Note: node >= 18.0.0
### Set up

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "express-postgres-ts-starter",
"main": "server.ts",
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0",
"node": "^18.0.0 || ^20.0.0",
"yarn": ">=1.22.4 <2",
"npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/"
},
Expand Down

0 comments on commit d4d4877

Please sign in to comment.