Skip to content

Commit

Permalink
feat(deps): require Node.js 14.17.0 as a minimum (#1260)
Browse files Browse the repository at this point in the history
```console
$ npm ci
npm does not support Node.js v14.14.0
You should probably upgrade to a newer version of node as we
can't make any promises that npm will work with this version.
You can find the latest version at https://nodejs.org/
npm ERR! code EBADENGINE
npm ERR! engine Unsupported engine
npm ERR! engine Not compatible with your version of node/npm: @eslint/eslintrc@1.2.3
npm ERR! notsup Not compatible with your version of node/npm: @eslint/eslintrc@1.2.3
npm ERR! notsup Required: {"node":"^12.22.0 || ^14.17.0 || >=16.0.0"}
npm ERR! notsup Actual:   {"npm":"8.9.0","node":"v14.14.0"}
```

https://nodejs.org/en/blog/release/v14.17.0/
  • Loading branch information
ybiquitous committed May 10, 2022
1 parent 1ff217d commit 6ddb17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@ -29,7 +29,7 @@
".husky/pre-commit"
],
"engines": {
"node": "^14.14.0 || >=16.0.0"
"node": "^14.17.0 || >=16.0.0"
},
"dependencies": {
"@commitlint/cli": "^16.2.4",
Expand Down

0 comments on commit 6ddb17b

Please sign in to comment.