Skip to content

Commit

Permalink
Set SDK node compatability to >=16
Browse files Browse the repository at this point in the history
We use node version 18, but our node-app is stuck using version 16. This
just formalizes what we already know. We need to support at least
version 16 for now.
  • Loading branch information
NullSoldier committed Jul 5, 2023
1 parent 1a68ef7 commit 0600ea5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ironfish-rust-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"engines": {
"node": "18.x"
"node": ">=16"
},
"devDependencies": {
"@napi-rs/cli": "2.14.3",
Expand Down
3 changes: 3 additions & 0 deletions ironfish/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"build/**/*.d.ts.map",
"build/**/*.json"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@ethersproject/bignumber": "5.7.0",
"@fast-csv/format": "4.3.5",
Expand Down

0 comments on commit 0600ea5

Please sign in to comment.