Skip to content

Commit

Permalink
Drop support for Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 22, 2023
1 parent 90e4437 commit ffc777e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ You can try this library:
npm install -g nve
```

`node >=16.17.0` must be globally installed. However the command run by `nve`
`node >=18.18.0` must be globally installed. However the command run by `nve`
can use any Node version (providing it is compatible with it).

To use this programmatically (from Node.js) instead, please check
Expand Down
6 changes: 3 additions & 3 deletions benchmark/tasks.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nve: ./src/bin.js 16.17.0 node --version
nvmExec: bash -c source\ ~/.nvm/nvm.sh\ &&\ nvm\ exec\ 16.17.0\ node\ --version
npxNode: npx --yes -- node@16.17.0 --version
nve: ./src/bin.js 18.18.0 node --version
nvmExec: bash -c source\ ~/.nvm/nvm.sh\ &&\ nvm\ exec\ 18.18.0\ node\ --version
npxNode: npx --yes -- node@18.18.0 --version
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
"test-each": "^6.0.1"
},
"engines": {
"node": ">=16.17.0"
"node": ">=18.18.0"
}
}
2 changes: 1 addition & 1 deletion src/helpers/versions.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const VERY_OLD_TEST_VERSION = '0.8.28'
export const OLD_TEST_VERSION = '4.0.0'
export const TEST_VERSION = '6.2.1'
export const HELPER_VERSION = '16.17.0'
export const HELPER_VERSION = '18.18.0'
export const INVALID_VERSION = 'invalid_version'
export const LATEST_STAR_VERSION = '*'
export const LATEST_VERSION = 'latest'
Expand Down

0 comments on commit ffc777e

Please sign in to comment.