Skip to content

Commit c01a33e

Browse files
deps(dev): bump aegir from 40.0.13 to 41.0.0 (#39)
Bumps [aegir](https://github.com/ipfs/aegir) from 40.0.13 to 41.0.0. - [Release notes](https://github.com/ipfs/aegir/releases) - [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md) - [Commits](ipfs/aegir@v40.0.13...v41.0.0) --- updated-dependencies: - dependency-name: aegir dependency-type: direct:development update-type: version-update:semver-major ... --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achingbrain <[email protected]>
1 parent 7d3d708 commit c01a33e

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@
2929
"generate": "aegir run generate",
3030
"build": "aegir run build",
3131
"lint": "aegir run lint",
32-
"docs": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs -- --exclude packages/interop",
33-
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs --publish false -- --exclude packages/interop",
3432
"dep-check": "aegir run dep-check",
35-
"release": "npm run docs:no-publish && aegir run release && npm run docs -- --exclude packages/interop"
33+
"release": "run-s build docs:no-publish npm:release docs",
34+
"npm:release": "aegir run release",
35+
"docs": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs -- --exclude packages/interop --excludeExternals",
36+
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs --publish false -- --exclude packages/interop"
3637
},
3738
"devDependencies": {
38-
"aegir": "^40.0.8"
39+
"aegir": "^41.0.0",
40+
"npm-run-all": "^4.1.5"
3941
},
4042
"type": "module",
4143
"workspaces": [

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
},
144144
"devDependencies": {
145145
"@libp2p/peer-id-factory": "^3.0.3",
146-
"aegir": "^40.0.8",
146+
"aegir": "^41.0.0",
147147
"body-parser": "^1.20.2"
148148
}
149149
}

packages/client/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ export interface RoutingV1HttpApiClient {
4141
* Returns an async generator of PeerInfos that can provide the content
4242
* for the passed CID
4343
*/
44-
getProviders: (cid: CID, options?: AbortOptions) => AsyncGenerator<PeerInfo>
44+
getProviders(cid: CID, options?: AbortOptions): AsyncGenerator<PeerInfo>
4545

4646
/**
4747
* Shut down any currently running HTTP requests and clear up any resources
4848
* that are in use
4949
*/
50-
stop: () => void
50+
stop(): void
5151
}
5252

5353
/**

packages/interop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@helia/interface": "^2.0.0",
5252
"@libp2p/interface": "^0.1.2",
5353
"@libp2p/kad-dht": "^10.0.6",
54-
"aegir": "^40.0.8",
54+
"aegir": "^41.0.0",
5555
"fastify": "^4.17.0",
5656
"libp2p": "^0.46.10",
5757
"multiformats": "^12.1.1"

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
"@libp2p/peer-id-factory": "^3.0.3",
160160
"@multiformats/multiaddr": "^12.1.3",
161161
"@types/sinon": "^10.0.15",
162-
"aegir": "^40.0.8",
162+
"aegir": "^41.0.0",
163163
"sinon": "^16.0.0",
164164
"sinon-ts": "^1.0.0"
165165
}

0 commit comments

Comments
 (0)