Skip to content

Commit aaf0c1a

Browse files
authored
chore: swap go-ipfs-dep for go-ipfs (#3174)
It has a much better name.
1 parent ba3389e commit aaf0c1a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.aegir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const server = createServer({
1010
}, {
1111
type: 'go',
1212
ipfsHttpModule: require('./'),
13-
ipfsBin: require('go-ipfs-dep').path()
13+
ipfsBin: require('go-ipfs').path()
1414
})
1515

1616
let echoServer = new EchoServer()

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"browser": {
1818
"./src/lib/to-stream.js": "./src/lib/to-stream.browser.js",
1919
"ipfs-utils/src/files/glob-source": false,
20-
"go-ipfs-dep": false
20+
"go-ipfs": false
2121
},
2222
"repository": {
2323
"type": "git",
@@ -70,7 +70,7 @@
7070
"devDependencies": {
7171
"aegir": "^23.0.0",
7272
"cross-env": "^7.0.0",
73-
"go-ipfs-dep": "^0.6.0",
73+
"go-ipfs": "^0.6.0",
7474
"interface-ipfs-core": "^0.137.0",
7575
"ipfsd-ctl": "^4.1.1",
7676
"it-all": "^1.0.1",

test/utils/factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const commonOptions = {
1313

1414
const commonOverrides = {
1515
go: {
16-
ipfsBin: isNode ? require('go-ipfs-dep').path() : undefined
16+
ipfsBin: isNode ? require('go-ipfs').path() : undefined
1717
}
1818
}
1919

0 commit comments

Comments
 (0)