Skip to content

Commit

Permalink
chore: upgrade to nodejs 16
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
The minimal NodeJS version is now 16.20.1
  • Loading branch information
hasezoey committed Nov 25, 2023
1 parent 5606293 commit b1eb0e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ I started `@typegoose/auto-increment` because `mongoose-auto-increment` and `mon

## Requirements

- Node 14.17.0+
- Node 16.20.1+
- TypeScript 4.9+ (older versions could work, but are not tested)
- mongoose 7.5.0+

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "lib/autoIncrement.js",
"types": "lib/autoIncrement.d.ts",
"engines": {
"node": ">=14.17.0"
"node": ">=16.20.1"
},
"files": [
"lib/**/*.js",
Expand Down

0 comments on commit b1eb0e6

Please sign in to comment.