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

chore: update deps #147

Merged
merged 2 commits into from
Jul 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
build: {
config: {
platform: 'node'
}
},
bundlesizeMax: '44KB'
}
}
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- run: npm install
- run: npm run lint
- run: npx aegir dep-check -- -i wrtc -i electron-webrtc
- run: npx aegir dep-check
- run: npm run build
test-node:
needs: check
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"lint": "aegir ts -p check && aegir lint",
"build": "aegir build",
"test": "aegir test -t node",
"test:node": "aegir test -t node",
Expand Down Expand Up @@ -43,18 +43,18 @@
"@types/debug": "^4.1.5",
"aegir": "^33.2.0",
"it-pipe": "^1.1.0",
"libp2p-interfaces": "^0.11.0",
"sinon": "^10.0.1",
"streaming-iterables": "^5.0.2"
"libp2p-interfaces": "^0.12.0",
"sinon": "^11.1.1",
"streaming-iterables": "^6.0.0"
},
"dependencies": {
"abortable-iterator": "^3.0.0",
"class-is": "^1.1.0",
"debug": "^4.3.1",
"err-code": "^3.0.1",
"libp2p-utils": "^0.3.0",
"mafmt": "^9.0.0",
"multiaddr": "^9.0.1",
"libp2p-utils": "^0.4.0",
"mafmt": "^10.0.0",
"multiaddr": "^10.0.0",
"stream-to-it": "^0.2.2"
},
"contributors": [
Expand Down
7 changes: 1 addition & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
{
"extends": "aegir/src/config/tsconfig.aegir.json",
"compilerOptions": {
"outDir": "dist",
"baseUrl": "./",
"paths": {
"*": ["./types/*"]
}
"outDir": "dist"
},
"include": [
"types",
"src"
]
}