Skip to content
This repository was archived by the owner on Apr 24, 2023. It is now read-only.

Commit 8908a76

Browse files
ready for next aegir
1 parent 8d91917 commit 8908a76

File tree

7 files changed

+32
-18
lines changed

7 files changed

+32
-18
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ node_modules
2828

2929
# Aegir builds
3030
dist
31-
lib

.travis.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
sudo: false
22
language: node_js
3-
node_js:
4-
- 4
5-
- 5
3+
matrix:
4+
include:
5+
- node_js: 4
6+
env: CXX=g++-4.8
7+
- node_js: 6
8+
env:
9+
- SAUCE=true
10+
- CXX=g++-4.8
11+
- node_js: stable
12+
env: CXX=g++-4.8
613

714
# Make sure we have new NPM.
815
before_install:
@@ -13,12 +20,17 @@ script:
1320
- npm test
1421
- npm run coverage
1522

16-
addons:
17-
firefox: 'latest'
18-
1923
before_script:
2024
- export DISPLAY=:99.0
2125
- sh -e /etc/init.d/xvfb start
2226

2327
after_success:
2428
- npm run coverage-publish
29+
30+
addons:
31+
firefox: 'latest'
32+
apt:
33+
sources:
34+
- ubuntu-toolchain-r-test
35+
packages:
36+
- g++-4.8

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
js-libp2p-webrtc-star
2-
=====================
1+
# js-libp2p-webrtc-star
32

43
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
54
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
65
[![Build Status](https://travis-ci.org/libp2p/js-libp2p-webrtc-star.svg?style=flat-square)](https://travis-ci.org/libp2p/js-libp2p-webrtc-star)
76
![](https://img.shields.io/badge/coverage-%3F-yellow.svg?style=flat-square)
87
[![Dependency Status](https://david-dm.org/libp2p/js-libp2p-webrtc-star.svg?style=flat-square)](https://david-dm.org/libp2p/js-libp2p-webrtc-star)
98
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
9+
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
10+
![](https://img.shields.io/badge/Node.js-%3E%3D4.0.0-orange.svg?style=flat-square)
11+
12+
[![Sauce Test Status](https://saucelabs.com/browser-matrix/js-libp2p-webrtc-star.svg)](https://saucelabs.com/
13+
u/js-libp2p-webrtc-star)
1014

1115
![](https://raw.githubusercontent.com/libp2p/interface-connection/master/img/badge.png)
1216
![](https://raw.githubusercontent.com/libp2p/interface-transport/master/img/badge.png)

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"name": "libp2p-webrtc-star",
33
"version": "0.4.5",
44
"description": "libp2p WebRTC transport that includes a discovery mechanism provided by the signalling-star",
5-
"main": "lib/index.js",
6-
"jsnext:main": "src/index.js",
5+
"main": "src/index.js",
76
"bin": {
87
"star-sig": "src/signalling-server/bin.js"
98
},
@@ -38,14 +37,15 @@
3837
},
3938
"homepage": "https://github.com/libp2p/js-libp2p-webrtc-star#readme",
4039
"devDependencies": {
41-
"aegir": "^8.0.1",
40+
"aegir": "^9.0.1",
4241
"bl": "^1.1.2",
4342
"chai": "^3.5.0",
43+
"gulp": "^3.9.1",
4444
"pre-commit": "^1.1.3",
45-
"run-series": "^1.1.4",
4645
"webrtcsupport": "^2.2.0"
4746
},
4847
"dependencies": {
48+
"async": "^2.1.2",
4949
"debug": "^2.2.0",
5050
"hapi": "^15.0.3",
5151
"interface-connection": "^0.2.1",
@@ -54,7 +54,6 @@
5454
"peer-id": "^0.7.0",
5555
"peer-info": "^0.7.0",
5656
"pull-stream": "^3.4.3",
57-
"run-parallel": "^1.1.6",
5857
"simple-peer": "^6.0.4",
5958
"socket.io": "^1.4.6",
6059
"socket.io-client": "^1.4.6",
@@ -67,4 +66,4 @@
6766
"greenkeeperio-bot <[email protected]>",
6867
"interfect <[email protected]>"
6968
]
70-
}
69+
}

test/signalling-server/test-signalling-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
const expect = require('chai').expect
55
const io = require('socket.io-client')
6-
const parallel = require('run-parallel')
6+
const parallel = require('async/parallel')
77
const multiaddr = require('multiaddr')
88

99
const sigServer = require('../../src/signalling-server')

test/webrtc-star/test-dial.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
const expect = require('chai').expect
66
const multiaddr = require('multiaddr')
7-
const series = require('run-series')
7+
const series = require('async/series')
88
const pull = require('pull-stream')
99

1010
const WebRTCStar = require('../../src/webrtc-star')

test/webrtc-star/test-valid-connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
const expect = require('chai').expect
55
const multiaddr = require('multiaddr')
6-
const series = require('run-series')
6+
const series = require('async/series')
77
const pull = require('pull-stream')
88

99
const WebRTCStar = require('../../src/webrtc-star')

0 commit comments

Comments
 (0)