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

Commit

Permalink
fix: replace node buffers with uint8arrays (#106)
Browse files Browse the repository at this point in the history
Removes redundant deps and updates everything to the latest versions.

BREAKING CHANGES:

- The deps of this module have Uint8Array properties
  • Loading branch information
achingbrain authored Aug 10, 2020
1 parent d14bd1e commit b59b7ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,14 @@
"npm": ">=3.0.0"
},
"devDependencies": {
"aegir": "^22.0.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"libp2p-interfaces": "^0.3.0"
"aegir": "^25.0.0",
"libp2p-interfaces": "^0.4.0"
},
"dependencies": {
"debug": "^4.1.1",
"mafmt": "^7.0.0",
"multiaddr": "^7.2.1",
"peer-id": "^0.13.5"
"multiaddr": "^8.0.0",
"peer-id": "^0.14.0"
},
"pre-push": [
"lint",
Expand Down
4 changes: 1 addition & 3 deletions test/bootstrap.spec.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use strict'
/* eslint-env mocha */

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

const mafmt = require('mafmt')
const PeerId = require('peer-id')
Expand Down

0 comments on commit b59b7ad

Please sign in to comment.