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

Commit 56f2839

Browse files
authored
Merge pull request #355 from ipfs/fix-build
fix: upgrade aegir and ensure glob is mocked
2 parents 76bf64d + 85b1f12 commit 56f2839

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
@@ -14,8 +14,8 @@ module.exports = {
1414
}
1515
},
1616
externals: {
17-
fs: '{}',
1817
mkdirp: '{}',
18+
glob: '{}',
1919
'simple-websocket-server': '{}'
2020
}
2121
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
},
4141
"homepage": "https://github.com/ipfs/js-ipfs#readme",
4242
"devDependencies": {
43-
"aegir": "^3.2.0",
43+
"aegir": "^4.0.0",
4444
"buffer-loader": "0.0.1",
4545
"chai": "^3.5.0",
4646
"expose-loader": "^0.7.1",
@@ -118,4 +118,4 @@
118118
"kumavis <[email protected]>",
119119
"nginnever <[email protected]>"
120120
]
121-
}
121+
}

test/core/both/test-bitswap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe('bitswap', () => {
6666
// cause browser nodes don't have a websockets addrs
6767
// TODO, what we really need is a way to dial to a peerId only
6868
// and another to dial to peerInfo
69-
target = multiaddr(`/ip4/0.0.0.0/tcp/0/ws/ipfs/${res.ID}`).toString()
69+
target = multiaddr(`/ip4/127.0.0.1/tcp/0/ws/ipfs/${res.ID}`).toString()
7070
}
7171

7272
const swarm = node2.libp2p ? node2.libp2p.swarm : node2.swarm

0 commit comments

Comments
 (0)