Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Feb 19, 2024
1 parent 2930a48 commit 8b1a796
Show file tree
Hide file tree
Showing 5 changed files with 350 additions and 308 deletions.
12 changes: 6 additions & 6 deletions examples/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
"main": "src/main.jsx",
"scripts": {
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,jsx,ts,tsx,yml,json,css}' --ignore-path ../../.gitignore",
"build": "vite build --force",
"build": "vite build",
"dev": "vite --force",
"serve": "vite preview --port 3000"
},
"dependencies": {
"@wnfs-wg/nest": "*",
"blockstore-idb": "^1.1.7",
"uint8arrays": "^5.0.1"
"blockstore-idb": "^1.1.8",
"uint8arrays": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@types/node": "^20.10.7",
"@babel/core": "^7.23.9",
"@types/node": "^20.11.19",
"typescript": "5.3.3",
"vite": "^5.0.11",
"vite": "^5.1.3",
"vite-plugin-wasm": "^3.3.0"
},
"eslintConfig": {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"devDependencies": {
"@fission-codes/eslint-config": "^0.1.0",
"depcheck": "^1.4.7",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.9.0",
"typedoc": "^0.25.8",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typedoc-plugin-zod": "^1.1.2",
"typescript": "5.3.3"
Expand Down
28 changes: 14 additions & 14 deletions packages/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,29 +106,29 @@
"test:browser": "playwright-test 'test/**/!(*.node).test.ts' --timeout 30000"
},
"dependencies": {
"@ipld/dag-pb": "^4.0.6",
"@ipld/dag-pb": "^4.1.0",
"compare-versions": "^6.1.0",
"emittery": "^1.0.1",
"interface-blockstore": "^5.2.7",
"ipfs-unixfs": "^11.1.2",
"ipfs-unixfs-exporter": "^13.2.2",
"ipfs-unixfs-importer": "^15.2.1",
"emittery": "^1.0.3",
"interface-blockstore": "^5.0.0",
"ipfs-unixfs": "^11.1.3",
"ipfs-unixfs-exporter": "^13.5.0",
"ipfs-unixfs-importer": "^15.2.4",
"it-all": "^3.0.4",
"multiformats": "^12.1.3",
"multiformats": "^13.1.0",
"p-debounce": "^4.0.0",
"uint8arrays": "^5.0.1",
"uint8arrays": "^5.0.2",
"wnfs": "0.2.0"
},
"devDependencies": {
"@types/assert": "^1.5.9",
"@types/assert": "^1.5.10",
"@types/debounce-promise": "^3.1.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.7",
"@types/node": "^20.11.19",
"assert": "^2.1.0",
"blockstore-core": "^4.3.10",
"fast-check": "^3.15.0",
"mocha": "^10.2.0",
"playwright-test": "^14.0.0",
"blockstore-core": "^4.4.0",
"fast-check": "^3.15.1",
"mocha": "^10.3.0",
"playwright-test": "^14.1.1",
"tsx": "^4.7.1"
},
"publishConfig": {
Expand Down
21 changes: 11 additions & 10 deletions packages/nest/src/class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -773,16 +773,17 @@ export class FileSystem {
Store.wnfs(this.#blockstore),
this.#rng
)
: await (priv.remainder.length === 0
? Promise.resolve(priv.node)
: priv.node
.asDir()
.getNode(
priv.remainder,
searchLatest(),
this.#rootTree.privateForest(),
Store.wnfs(this.#blockstore)
)
: await (
priv.remainder.length === 0
? Promise.resolve(priv.node)
: priv.node
.asDir()
.getNode(
priv.remainder,
searchLatest(),
this.#rootTree.privateForest(),
Store.wnfs(this.#blockstore)
)
)
.then((node) => {
if (node === null || node === undefined)
Expand Down
Loading

0 comments on commit 8b1a796

Please sign in to comment.