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

Commit b3e315a

Browse files
authored
chore: update deps (#147)
BREAKING CHANGE: uses new majors of multiaddr and mafmt
1 parent 23e4fde commit b3e315a

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

.aegir.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module.exports = {
22
build: {
33
config: {
44
platform: 'node'
5-
}
5+
},
6+
bundlesizeMax: '44KB'
67
}
78
}

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- run: npm install
1616
- run: npm run lint
17-
- run: npx aegir dep-check -- -i wrtc -i electron-webrtc
17+
- run: npx aegir dep-check
1818
- run: npm run build
1919
test-node:
2020
needs: check

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"leadMaintainer": "Jacob Heun <[email protected]>",
66
"main": "src/index.js",
77
"scripts": {
8-
"lint": "aegir lint",
8+
"lint": "aegir ts -p check && aegir lint",
99
"build": "aegir build",
1010
"test": "aegir test -t node",
1111
"test:node": "aegir test -t node",
@@ -43,18 +43,18 @@
4343
"@types/debug": "^4.1.5",
4444
"aegir": "^33.2.0",
4545
"it-pipe": "^1.1.0",
46-
"libp2p-interfaces": "^0.11.0",
47-
"sinon": "^10.0.1",
48-
"streaming-iterables": "^5.0.2"
46+
"libp2p-interfaces": "^0.12.0",
47+
"sinon": "^11.1.1",
48+
"streaming-iterables": "^6.0.0"
4949
},
5050
"dependencies": {
5151
"abortable-iterator": "^3.0.0",
5252
"class-is": "^1.1.0",
5353
"debug": "^4.3.1",
5454
"err-code": "^3.0.1",
55-
"libp2p-utils": "^0.3.0",
56-
"mafmt": "^9.0.0",
57-
"multiaddr": "^9.0.1",
55+
"libp2p-utils": "^0.4.0",
56+
"mafmt": "^10.0.0",
57+
"multiaddr": "^10.0.0",
5858
"stream-to-it": "^0.2.2"
5959
},
6060
"contributors": [

tsconfig.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
{
22
"extends": "aegir/src/config/tsconfig.aegir.json",
33
"compilerOptions": {
4-
"outDir": "dist",
5-
"baseUrl": "./",
6-
"paths": {
7-
"*": ["./types/*"]
8-
}
4+
"outDir": "dist"
95
},
106
"include": [
11-
"types",
127
"src"
138
]
149
}

0 commit comments

Comments
 (0)