Skip to content

Commit 0e71e5c

Browse files
committed
Fix version for dnt.
1 parent 6f1a537 commit 0e71e5c

File tree

4 files changed

+20
-23
lines changed

4 files changed

+20
-23
lines changed

deno.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
],
2323
"imports": {
2424
"@dajiaji/mlkem": "npm:mlkem@^2.3.1",
25-
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
25+
"@deno/dnt": "jsr:@deno/[email protected]",
2626
"@noble/ciphers/chacha": "npm:@noble/ciphers@^1.2.1/chacha",
2727
"@noble/curves/ed25519": "npm:@noble/curves@^1.8.1/ed25519",
2828
"@noble/curves/ed448": "npm:@noble/curves@^1.8.1/ed448",
@@ -33,9 +33,9 @@
3333
"@noble/hashes/sha3": "npm:@noble/hashes@^1.7.1/sha3",
3434
"@playwright/test": "npm:@playwright/test@^1.51.0",
3535
"@std/assert": "jsr:@std/[email protected]",
36-
"@std/fs": "jsr:@std/fs@^1.0.14",
37-
"@std/path": "jsr:@std/path@^1.0.8",
38-
"@std/testing/bdd": "jsr:@std/testing@^1.0.9/bdd"
36+
"@std/fs": "jsr:@std/[email protected]",
37+
"@std/path": "jsr:@std/[email protected]",
38+
"@std/testing/bdd": "jsr:@std/[email protected]/bdd"
3939
},
4040
"fmt": {
4141
"exclude": [

deno.lock

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

npm/import_map.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"imports": {
33
"@dajiaji/mlkem": "npm:mlkem@^2.3.1",
4-
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
4+
"@deno/dnt": "jsr:@deno/[email protected]",
55
"@hpke/chacha20poly1305": "npm:@hpke/chacha20poly1305@^1.6.2",
66
"@hpke/common": "npm:@hpke/common@^1.7.2",
77
"@hpke/core": "npm:@hpke/core@^1.7.2",
@@ -16,8 +16,8 @@
1616
"@noble/hashes/sha512": "npm:@noble/hashes@^1.7.1/sha512",
1717
"@noble/hashes/sha3": "npm:@noble/hashes@^1.7.1/sha3",
1818
"@std/assert": "jsr:@std/[email protected]",
19-
"@std/fs": "jsr:@std/fs@^1.0.14",
20-
"@std/path": "jsr:@std/path@^1.0.8",
21-
"@std/testing/bdd": "jsr:@std/testing@^1.0.9/bdd"
19+
"@std/fs": "jsr:@std/[email protected]",
20+
"@std/path": "jsr:@std/[email protected]",
21+
"@std/testing/bdd": "jsr:@std/[email protected]/bdd"
2222
}
2323
}

packages/common/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"tasks": {
4343
"test": "deno fmt && deno lint && deno check *.ts src/**/*.ts test/*.ts && deno test --fail-fast --doc --coverage=coverage --parallel --allow-read",
4444
"cov": "deno coverage ./coverage --lcov --exclude='test'",
45-
"dnt": "deno run --import-map=../../npm/import_map.json -A dnt.ts",
45+
"dnt": "deno cache --lock=../../deno.lock dnt.ts && deno run --import-map=../../npm/import_map.json -A dnt.ts",
4646
"minify": "esbuild ../../npm/packages/common/esm/mod.js --bundle --format=esm --minify"
4747
}
4848
}

0 commit comments

Comments
 (0)