Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
chore: update deps (#134)
Browse files Browse the repository at this point in the history
* chore: update deps

Upgrades to the latest multiaddrs with Uint8Arrays

Also removes redundant deps.

BREAKING CHANGES:

- The multiaddr dep used by this module returns Uint8Arrays and may
  not be compatible with previous versions

* chore: update utils

* chore: remove gh dep url
  • Loading branch information
achingbrain committed Aug 7, 2020
1 parent 82b9907 commit d9f9912
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
6 changes: 2 additions & 4 deletions package.json
Expand Up @@ -34,8 +34,6 @@
},
"devDependencies": {
"aegir": "^25.0.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"libp2p-interfaces": "^0.3.1",
"it-pipe": "^1.1.0",
"sinon": "^9.0.0",
Expand All @@ -46,9 +44,9 @@
"class-is": "^1.1.0",
"debug": "^4.1.1",
"err-code": "^2.0.0",
"libp2p-utils": "^0.1.2",
"libp2p-utils": "^0.2.0",
"mafmt": "^7.1.0",
"multiaddr": "^7.5.0",
"multiaddr": "^8.0.0",
"stream-to-it": "^0.2.2"
},
"contributors": [
Expand Down
5 changes: 1 addition & 4 deletions test/connection.spec.js
@@ -1,10 +1,7 @@
/* eslint-env mocha */
'use strict'

const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)
const { expect } = require('aegir/utils/chai')
const TCP = require('../src')
const multiaddr = require('multiaddr')

Expand Down
5 changes: 1 addition & 4 deletions test/filter.spec.js
@@ -1,10 +1,7 @@
/* eslint-env mocha */
'use strict'

const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)
const { expect } = require('aegir/utils/chai')
const TCP = require('../src')
const multiaddr = require('multiaddr')

Expand Down
5 changes: 1 addition & 4 deletions test/listen-dial.spec.js
@@ -1,10 +1,7 @@
/* eslint-env mocha */
'use strict'

const chai = require('chai')
const dirtyChai = require('dirty-chai')
const expect = chai.expect
chai.use(dirtyChai)
const { expect } = require('aegir/utils/chai')
const TCP = require('../src')
const net = require('net')
const os = require('os')
Expand Down

0 comments on commit d9f9912

Please sign in to comment.