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

Commit 8c122e8

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

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

packages/ipfs-http-client/.aegir.js

+1-1
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()

packages/ipfs-http-client/package.json

+2-2
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",

packages/ipfs-http-client/test/utils/factory.js

+1-1
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

packages/ipfs/.aegir.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = {
7676
}
7777
}, {
7878
go: {
79-
ipfsBin: require('go-ipfs-dep').path()
79+
ipfsBin: require('go-ipfs').path()
8080
}
8181
}).start()
8282

packages/ipfs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@
178178
"delay": "^4.3.0",
179179
"execa": "^4.0.0",
180180
"form-data": "^3.0.0",
181-
"go-ipfs-dep": "^0.6.0",
181+
"go-ipfs": "^0.6.0",
182182
"interface-ipfs-core": "^0.137.0",
183-
"ipfs-interop": "^1.0.4",
183+
"ipfs-interop": "ipfs/interop#chore/swap-go-ipfs-dep-for-go-ipfs",
184184
"ipfsd-ctl": "^4.1.1",
185185
"iso-random-stream": "^1.1.1",
186186
"it-to-buffer": "^1.0.0",

0 commit comments

Comments
 (0)