Skip to content

Commit 2b429cc

Browse files
authored
fix: individual packages can use npm 6 (#167)
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
1 parent 35e2059 commit 2b429cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/ipfs-unixfs-exporter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"engines": {
3434
"node": ">=14.0.0",
35-
"npm": ">=7.0.0"
35+
"npm": ">=6.0.0"
3636
},
3737
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
3838
"publishConfig": {

packages/ipfs-unixfs-importer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"engines": {
3434
"node": ">=14.0.0",
35-
"npm": ">=7.0.0"
35+
"npm": ">=6.0.0"
3636
},
3737
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
3838
"publishConfig": {

packages/ipfs-unixfs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"engines": {
3535
"node": ">=14.0.0",
36-
"npm": ">=7.0.0"
36+
"npm": ">=6.0.0"
3737
},
3838
"homepage": "https://github.com/ipfs/js-ipfs-unixfs#readme",
3939
"publishConfig": {

0 commit comments

Comments
 (0)