Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
fix: move dev deps to prod (#195)
Browse files Browse the repository at this point in the history
Some production deps were only declared in the dev deps section of the manifest file.
  • Loading branch information
achingbrain authored Apr 19, 2022
1 parent 54c0bc6 commit 3e1ffc7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
4 changes: 1 addition & 3 deletions packages/libp2p-interface-compliance-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@
"it-all": "^1.0.6",
"it-drain": "^1.0.5",
"it-goodbye": "^4.0.1",
"it-handshake": "^3.0.1",
"it-map": "^1.0.6",
"it-ndjson": "^0.1.1",
"it-pair": "^2.0.2",
Expand All @@ -229,8 +230,5 @@
"sinon": "^13.0.0",
"uint8arrays": "^3.0.0",
"util": "^0.12.4"
},
"devDependencies": {
"it-handshake": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/libp2p-peer-collections/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@
"release": "aegir release"
},
"dependencies": {
"@libp2p/interfaces": "^1.3.0"
"@libp2p/interfaces": "^1.3.0",
"@libp2p/peer-id": "^1.1.0"
},
"devDependencies": {
"@libp2p/peer-id": "^1.1.0",
"@libp2p/peer-id-factory": "^1.0.0",
"aegir": "^37.0.7"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/libp2p-peer-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@
"dependencies": {
"@libp2p/interfaces": "^1.3.0",
"@libp2p/logger": "^1.1.0",
"@libp2p/peer-id": "^1.1.0",
"@libp2p/peer-record": "^1.0.0",
"@multiformats/multiaddr": "^10.1.5",
"err-code": "^3.0.1",
"interface-datastore": "^6.1.0",
"it-all": "^1.0.6",
"it-filter": "^1.0.3",
Expand All @@ -149,20 +151,18 @@
"it-pipe": "^2.0.3",
"mortice": "^3.0.0",
"multiformats": "^9.6.3",
"protons-runtime": "^1.0.2"
"protons-runtime": "^1.0.2",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@libp2p/interface-compliance-tests": "^1.1.0",
"@libp2p/peer-id": "^1.1.0",
"@libp2p/peer-id-factory": "^1.0.0",
"@libp2p/utils": "^1.0.9",
"aegir": "^37.0.7",
"datastore-core": "^7.0.1",
"err-code": "^3.0.1",
"p-defer": "^4.0.0",
"p-wait-for": "^4.1.0",
"protons": "^3.0.2",
"sinon": "^13.0.1",
"uint8arrays": "^3.0.0"
"sinon": "^13.0.1"
}
}
4 changes: 2 additions & 2 deletions packages/libp2p-pubsub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,21 +179,21 @@
"@libp2p/peer-id": "^1.1.0",
"@libp2p/topology": "^1.1.0",
"@multiformats/multiaddr": "^10.1.5",
"abortable-iterator": "^4.0.2",
"err-code": "^3.0.1",
"iso-random-stream": "^2.0.0",
"it-length-prefixed": "^7.0.1",
"it-pipe": "^2.0.3",
"it-pushable": "^2.0.1",
"multiformats": "^9.6.3",
"p-queue": "^7.2.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@libp2p/peer-id-factory": "^1.0.0",
"abortable-iterator": "^4.0.2",
"aegir": "^37.0.7",
"delay": "^5.0.0",
"it-pair": "^2.0.2",
"it-pushable": "^2.0.1",
"p-wait-for": "^4.1.0",
"protons": "^3.0.2",
"protons-runtime": "^1.0.2",
Expand Down

0 comments on commit 3e1ffc7

Please sign in to comment.