Skip to content

Commit

Permalink
feat: strictly require nodejs version (storacha#1264)
Browse files Browse the repository at this point in the history
This PR adds `engines` and `engineStrict` props to the `package.json`
ensuring users are running the lower bound of what we're currently
testing on in CI (v18) when installing.
  • Loading branch information
Alan Shaw authored Jan 17, 2024
1 parent 47a4589 commit bc9f427
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/w3up-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,5 +178,9 @@
"assert",
"c8"
]
}
},
"engines": {
"node": ">=18"
},
"engineStrict": true
}

0 comments on commit bc9f427

Please sign in to comment.