This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-63
lines changed Expand file tree Collapse file tree 5 files changed +10
-63
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
18
18
<p align =" center " >
19
19
<a href =" https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs?ref=badge_small " alt =" FOSSA Status " ><img src =" https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fipfs%2Fjs-ipfs.svg?type=small " /></a >
20
- <a href =" https://travis-ci.org/ipfs/js-ipfs " ><img src =" https://travis-ci.org/ipfs/js-ipfs.svg?branch=master " /></a >
21
- <a href =" https://circleci.com/gh/ipfs/js-ipfs " ><img src =" https://circleci.com/gh/ipfs/js-ipfs.svg?style=svg " /></a >
22
- <a href =" https://ci.appveyor.com/project/wubalubadubdub/js-ipfs " ><img src =" https://ci.appveyor.com/api/projects/status/txn75y7843r2ff0p?svg=true " /></a >
23
20
<a href =" https://coveralls.io/github/ipfs/js-ipfs?branch=master " ><img src =" https://coveralls.io/repos/github/ipfs/js-ipfs/badge.svg?branch=master " ></a >
24
- <br >
25
21
<a href =" https://david-dm.org/ipfs/js-ipfs " ><img src =" https://david-dm.org/ipfs/js-ipfs.svg?style=flat-square " /></a >
26
22
<a href =" https://github.com/feross/standard " ><img src =" https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square " ></a >
27
- <a href =" https://github.com/RichardLitt/standard-readme " ><img src =" https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square " /></a >
28
- <a href =" " ><img src =" https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square " /></a >
29
- <a href =" " ><img src =" https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square " /></a >
23
+ <a href =" " ><img src =" https://img.shields.io/badge/npm-%3E%3D5.0.0-orange.svg?style=flat-square " /></a >
24
+ <a href =" " ><img src =" https://img.shields.io/badge/Node.js-%3E%3D8.0.0-orange.svg?style=flat-square " /></a >
30
25
<br >
31
26
</p >
32
27
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 73
73
"expose-loader" : " ^0.7.5" ,
74
74
"form-data" : " ^2.3.2" ,
75
75
"hat" : " 0.0.3" ,
76
- "interface-ipfs-core" : " ~0.65.5 " ,
76
+ "interface-ipfs-core" : " ~0.65.7 " ,
77
77
"ipfsd-ctl" : " ~0.34.0" ,
78
78
"lodash" : " ^4.17.10" ,
79
79
"mocha" : " ^5.1.1" ,
132
132
"libp2p-railing" : " ~0.8.1" ,
133
133
"libp2p-secio" : " ~0.10.0" ,
134
134
"libp2p-tcp" : " ~0.12.0" ,
135
- "libp2p-webrtc-star" : " ~0.14 .0" ,
135
+ "libp2p-webrtc-star" : " ~0.15 .0" ,
136
136
"libp2p-websocket-star" : " ~0.8.0" ,
137
137
"libp2p-websockets" : " ~0.12.0" ,
138
138
"lodash.flatmap" : " ^4.5.0" ,
Original file line number Diff line number Diff line change @@ -6,16 +6,18 @@ const parallel = require('async/parallel')
6
6
7
7
const IPFS = require ( '../../../src' )
8
8
9
- const DaemonFactory = require ( 'ipfsd-ctl' )
10
- const df = DaemonFactory . create ( { type : 'proc' , exec : IPFS } )
9
+ const IPFSFactory = require ( 'ipfsd-ctl' )
10
+ const f = IPFSFactory . create ( { type : 'proc' , exec : IPFS } )
11
11
12
12
const nodes = [ ]
13
13
const common = {
14
14
setup : function ( callback ) {
15
15
callback ( null , {
16
16
spawnNode : ( cb ) => {
17
- df . spawn ( {
18
- initOptions : { bits : 512 }
17
+ f . spawn ( {
18
+ initOptions : {
19
+ bits : 512
20
+ }
19
21
} , ( err , _ipfsd ) => {
20
22
if ( err ) {
21
23
return cb ( err )
You can’t perform that action at this time.
0 commit comments