Skip to content

Commit

Permalink
deps(dev): bump aegir from 40.0.13 to 41.0.0 (#36)
Browse files Browse the repository at this point in the history
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: achingbrain <alex@achingbrain.net>
  • Loading branch information
dependabot[bot] and achingbrain committed Oct 7, 2023
1 parent 07ed911 commit 77e29bc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
"generate": "aegir run generate",
"build": "aegir run build",
"lint": "aegir run lint",
"docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs -- --exclude packages/interop",
"docs:no-publish": "NODE_OPTIONS=--max_old_space_size=4096 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"
"release": "run-s build docs:no-publish npm:release docs",
"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.11"
"aegir": "^41.0.0"
},
"type": "module",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/dag-cbor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"progress-events": "^1.0.0"
},
"devDependencies": {
"aegir": "^40.0.11",
"aegir": "^41.0.0",
"blockstore-core": "^4.0.1"
}
}
4 changes: 2 additions & 2 deletions packages/dag-cbor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface DAGCBOR {
* // CID(bafyreidykglsfhoixmivffc5uwhcgshx4j465xwqntbmu43nb2dzqwfvae)
* ```
*/
add: (str: unknown, options?: Partial<AddOptions>) => Promise<CID>
add(str: unknown, options?: Partial<AddOptions>): Promise<CID>

/**
* Get an object from your Helia node, either previously added to it or to
Expand All @@ -85,7 +85,7 @@ export interface DAGCBOR {
* // { hello: 'world' }
* ```
*/
get: <T> (cid: CID, options?: Partial<GetOptions>) => Promise<T>
get<T>(cid: CID, options?: Partial<GetOptions>): Promise<T>
}

class DefaultDAGCBOR implements DAGCBOR {
Expand Down
2 changes: 1 addition & 1 deletion packages/interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@helia/interface": "^2.0.0",
"@ipld/dag-cbor": "^9.0.0",
"@libp2p/websockets": "^7.0.5",
"aegir": "^40.0.11",
"aegir": "^41.0.0",
"go-ipfs": "^0.22.0",
"helia": "^2.0.1",
"ipfs-core-types": "^0.14.0",
Expand Down

0 comments on commit 77e29bc

Please sign in to comment.