Skip to content
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
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@
"generate": "aegir run generate",
"build": "aegir run build",
"lint": "aegir run lint",
"docs": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs -- --exclude packages/interop",
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs --publish false -- --exclude packages/interop",
"dep-check": "aegir run dep-check",
"release": "npm run docs:no-publish && aegir run release && npm run docs -- --exclude packages/interop"
"release": "run-s build docs:no-publish npm:release docs",
"npm:release": "aegir run release",
"docs": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs -- --exclude packages/interop --excludeExternals",
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=8192 aegir docs --publish false -- --exclude packages/interop"
},
"devDependencies": {
"aegir": "^40.0.8"
"aegir": "^41.0.0",
"npm-run-all": "^4.1.5"
},
"type": "module",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
},
"devDependencies": {
"@libp2p/peer-id-factory": "^3.0.3",
"aegir": "^40.0.8",
"aegir": "^41.0.0",
"body-parser": "^1.20.2"
}
}
4 changes: 2 additions & 2 deletions packages/client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ export interface RoutingV1HttpApiClient {
* Returns an async generator of PeerInfos that can provide the content
* for the passed CID
*/
getProviders: (cid: CID, options?: AbortOptions) => AsyncGenerator<PeerInfo>
getProviders(cid: CID, options?: AbortOptions): AsyncGenerator<PeerInfo>

/**
* Shut down any currently running HTTP requests and clear up any resources
* that are in use
*/
stop: () => void
stop(): void
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@helia/interface": "^2.0.0",
"@libp2p/interface": "^0.1.2",
"@libp2p/kad-dht": "^10.0.6",
"aegir": "^40.0.8",
"aegir": "^41.0.0",
"fastify": "^4.17.0",
"libp2p": "^0.46.10",
"multiformats": "^12.1.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"@libp2p/peer-id-factory": "^3.0.3",
"@multiformats/multiaddr": "^12.1.3",
"@types/sinon": "^10.0.15",
"aegir": "^40.0.8",
"aegir": "^41.0.0",
"sinon": "^16.0.0",
"sinon-ts": "^1.0.0"
}
Expand Down