Skip to content

Commit 2043660

Browse files
committed
fix: workaround deps across deno/node
1 parent 63a7351 commit 2043660

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "npm:@ipld/dag-json";
1+
export * from "@ipld/dag-json";

typescript/packages/common-memory/principal.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import {
99
Signer,
1010
DID,
1111
} from "./interface.ts";
12-
import { base58btc } from "npm:multiformats/bases/base58";
13-
import { base64pad } from "npm:multiformats/bases/base64";
14-
import { varint } from "npm:multiformats";
12+
import { base58btc } from "multiformats/bases/base58";
13+
import { base64pad } from "multiformats/bases/base64";
14+
import { varint } from "multiformats";
1515
import { unauthorized } from "./error.ts";
1616

1717
const DID_PREFIX = "did:";

typescript/packages/toolshed/deno.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@
7575
"redis": "npm:redis@^4.7.0",
7676
"stoker": "npm:stoker@^1.4.2",
7777
"zod": "npm:zod@^3.24.1",
78-
"mistreevous": "npm:mistreevous@4.2.0"
78+
"mistreevous": "npm:mistreevous@4.2.0",
79+
"multiformats": "npm:multiformats@^13.3.2",
80+
"@ipld/dag-json": "npm:@ipld/dag-json@^10.2.3"
7981
}
8082
}

typescript/packages/toolshed/deno.lock

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)