From 4761d35705703f93d17fc20ace151869ee7de0e5 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Wed, 7 Jul 2021 08:22:33 +0100 Subject: [PATCH 1/2] chore: update deps BREAKING CHANGE: uses new major of multiaddr --- .aegir.js | 3 ++- package.json | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.aegir.js b/.aegir.js index 4e96ec1..939d94e 100644 --- a/.aegir.js +++ b/.aegir.js @@ -2,6 +2,7 @@ module.exports = { build: { config: { platform: 'node' - } + }, + bundlesizeMax: '44KB' } } diff --git a/package.json b/package.json index 70c157f..386844c 100644 --- a/package.json +++ b/package.json @@ -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", + "libp2p-utils": "^0.4.0", "mafmt": "^9.0.0", - "multiaddr": "^9.0.1", + "multiaddr": "^10.0.0", "stream-to-it": "^0.2.2" }, "contributors": [ From 2ef58b20ab61b5a5a0ca30cc07fcc498229d467a Mon Sep 17 00:00:00 2001 From: achingbrain Date: Wed, 7 Jul 2021 11:06:37 +0100 Subject: [PATCH 2/2] chore: update deps BREAKING CHANGE: uses new majors of multiaddr and mafmt --- .github/workflows/main.yml | 2 +- package.json | 4 ++-- tsconfig.json | 7 +------ 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 449e6d1..43ed35a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/package.json b/package.json index 386844c..3edf847 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "leadMaintainer": "Jacob Heun ", "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", @@ -53,7 +53,7 @@ "debug": "^4.3.1", "err-code": "^3.0.1", "libp2p-utils": "^0.4.0", - "mafmt": "^9.0.0", + "mafmt": "^10.0.0", "multiaddr": "^10.0.0", "stream-to-it": "^0.2.2" }, diff --git a/tsconfig.json b/tsconfig.json index 51187f1..3de2a3b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,9 @@ { "extends": "aegir/src/config/tsconfig.aegir.json", "compilerOptions": { - "outDir": "dist", - "baseUrl": "./", - "paths": { - "*": ["./types/*"] - } + "outDir": "dist" }, "include": [ - "types", "src" ] }