Skip to content

Commit

Permalink
fix: individual packages can use npm 6 (#167)
Browse files Browse the repository at this point in the history
We have engines with npm7 because we use npm7 workspaces, but this should only be needed in the main package.json for development. Internal packages should be published as supporting npm6 given that there are linux environments that still do not support npm7. For more information see web3-storage/web3.storage#387 where this issue was raised

Closes web3-storage/web3.storage#387
  • Loading branch information
vasco-santos authored Aug 25, 2021
1 parent 35e2059 commit 2b429cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ipfs-unixfs-exporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
"npm": ">=6.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-unixfs-importer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
"npm": ">=6.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-unixfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
"npm": ">=6.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
"publishConfig": {
Expand Down

0 comments on commit 2b429cc

Please sign in to comment.