Skip to content

Commit

Permalink
fix: Update required node version to node 18 and npm 8 (#1184)
Browse files Browse the repository at this point in the history
Refs: ipfs/helia#30

---------

Co-authored-by: Alex Potsides <alex@achingbrain.net>
  • Loading branch information
whizzzkid and achingbrain committed May 9, 2023
1 parent cf690fc commit b7ef86c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -17,8 +17,8 @@
"standard"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"bin": {
"aegir": "src/index.js"
Expand Down
4 changes: 2 additions & 2 deletions src/check-project/utils.js
Expand Up @@ -249,8 +249,8 @@ export function constructManifest (manifest, manifestFields, repoUrl, homePage =
},
keywords: manifest.keywords ? manifest.keywords.sort() : undefined,
engines: {
node: '>=16.0.0',
npm: '>=7.0.0'
node: '>=18.0.0',
npm: '>=8.6.0'
},
bin: manifest.bin,
...manifestFields,
Expand Down

0 comments on commit b7ef86c

Please sign in to comment.