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

Commit

Permalink
chore: swap go-ipfs-dep for go-ipfs (#3174)
Browse files Browse the repository at this point in the history
It has a much better name.
  • Loading branch information
achingbrain authored Jul 16, 2020
1 parent 5b5eabc commit 8c122e8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
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

0 comments on commit 8c122e8

Please sign in to comment.