Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

chore: swap go-ipfs-dep for go-ipfs #3174

Merged
merged 2 commits into from
Jul 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ipfs-http-client/.aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const server = createServer({
}, {
type: 'go',
ipfsHttpModule: require('./'),
ipfsBin: require('go-ipfs-dep').path()
ipfsBin: require('go-ipfs').path()
})

let echoServer = new EchoServer()
Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-http-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"browser": {
"./src/lib/to-stream.js": "./src/lib/to-stream.browser.js",
"ipfs-utils/src/files/glob-source": false,
"go-ipfs-dep": false
"go-ipfs": false
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -70,7 +70,7 @@
"devDependencies": {
"aegir": "^23.0.0",
"cross-env": "^7.0.0",
"go-ipfs-dep": "^0.6.0",
"go-ipfs": "^0.6.0",
"interface-ipfs-core": "^0.137.0",
"ipfsd-ctl": "^4.1.1",
"it-all": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-http-client/test/utils/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const commonOptions = {

const commonOverrides = {
go: {
ipfsBin: isNode ? require('go-ipfs-dep').path() : undefined
ipfsBin: isNode ? require('go-ipfs').path() : undefined
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs/.aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
}
}, {
go: {
ipfsBin: require('go-ipfs-dep').path()
ipfsBin: require('go-ipfs').path()
}
}).start()

Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@
"delay": "^4.3.0",
"execa": "^4.0.0",
"form-data": "^3.0.0",
"go-ipfs-dep": "^0.6.0",
"go-ipfs": "^0.6.0",
"interface-ipfs-core": "^0.137.0",
"ipfs-interop": "^1.0.4",
"ipfs-interop": "ipfs/interop#chore/swap-go-ipfs-dep-for-go-ipfs",
"ipfsd-ctl": "^4.1.1",
"iso-random-stream": "^1.1.1",
"it-to-buffer": "^1.0.0",
Expand Down