Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

deps(dev): bump aegir from 40.0.13 to 41.0.0 #41

Merged
merged 2 commits into from
Oct 7, 2023
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
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@
"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",
"npm-run-all": "^4.1.5"
},
"type": "module",
"workspaces": [
Expand Down
5 changes: 3 additions & 2 deletions packages/car/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
Expand Down Expand Up @@ -158,7 +159,7 @@
"@ipld/car": "^5.1.1",
"@ipld/dag-pb": "^4.0.0",
"@libp2p/interfaces": "^3.3.1",
"cborg": "^2.0.5",
"cborg": "^4.0.3",
"interface-blockstore": "^5.0.0",
"it-map": "^3.0.3",
"multiformats": "^12.0.1",
Expand All @@ -168,7 +169,7 @@
},
"devDependencies": {
"@helia/unixfs": "^1.2.2",
"aegir": "^40.0.11",
"aegir": "^41.0.0",
"blockstore-core": "^4.0.1",
"ipfs-unixfs-importer": "^15.1.0",
"it-drain": "^3.0.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/car/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export interface CarInit {
*/
export interface DAGWalker {
codec: number
walk: (block: Uint8Array) => AsyncGenerator<CID, void, undefined>
walk(block: Uint8Array): AsyncGenerator<CID, void, undefined>
}

/**
Expand Down Expand Up @@ -115,7 +115,7 @@ export interface Car {
* await c.import(reader)
* ```
*/
import: (reader: Pick<CarReader, 'blocks'>, options?: AbortOptions & ProgressOptions<PutManyBlocksProgressEvents>) => Promise<void>
import(reader: Pick<CarReader, 'blocks'>, options?: AbortOptions & ProgressOptions<PutManyBlocksProgressEvents>): Promise<void>

/**
* Store all blocks that make up one or more DAGs in a car file.
Expand Down Expand Up @@ -143,7 +143,7 @@ export interface Car {
* await eventPromise
* ```
*/
export: (root: CID | CID[], writer: Pick<CarWriter, 'put' | 'close'>, options?: AbortOptions & ProgressOptions<GetBlockProgressEvents>) => Promise<void>
export(root: CID | CID[], writer: Pick<CarWriter, 'put' | 'close'>, options?: AbortOptions & ProgressOptions<GetBlockProgressEvents>): Promise<void>
}

const DEFAULT_DAG_WALKERS = [
Expand Down
2 changes: 1 addition & 1 deletion packages/car/src/utils/dag-walkers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as raw from 'multiformats/codecs/raw'
*/
export interface DAGWalker {
codec: number
walk: (block: Uint8Array) => AsyncGenerator<CID, void, undefined>
walk(block: Uint8Array): AsyncGenerator<CID, void, undefined>
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/car/test/fixtures/memory-car.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import defer from 'p-defer'
import type { CID } from 'multiformats/cid'

export interface MemoryCar extends Pick<CarWriter, 'put' | 'close'> {
bytes: () => Promise<Uint8Array>
bytes(): Promise<Uint8Array>
}

export function memoryCarWriter (root: CID | CID[]): MemoryCar {
Expand Down
3 changes: 2 additions & 1 deletion packages/interop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
Expand All @@ -53,7 +54,7 @@
"@helia/unixfs": "^1.2.2",
"@ipld/car": "^5.1.1",
"@libp2p/websockets": "^7.0.5",
"aegir": "^40.0.11",
"aegir": "^41.0.0",
"go-ipfs": "^0.22.0",
"helia": "^2.0.1",
"ipfs-unixfs-importer": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/interop/test/fixtures/memory-car.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import defer from 'p-defer'
import type { CID } from 'multiformats/cid'

export interface MemoryCar extends Pick<CarWriter, 'put' | 'close'> {
bytes: () => Promise<Uint8Array>
bytes(): Promise<Uint8Array>
}

export function memoryCarWriter (root: CID | CID[]): MemoryCar {
Expand Down