Skip to content

Commit 3661974

Browse files
committed
fix: build:npm
1 parent e96d9a1 commit 3661974

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

deno.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"name": "@denostack/weakref",
33
"version": "0.2.0",
4+
"tasks": {
5+
"test": "deno task test:unit && deno task test:lint && deno task test:format && deno task test:types",
6+
"test:format": "deno fmt --check",
7+
"test:lint": "deno lint",
8+
"test:unit": "deno test -A",
9+
"test:types": "deno check mod.ts",
10+
"build:npm": "deno run --allow-sys --allow-env --allow-read --allow-write --allow-net --allow-run scripts/build_npm.ts"
11+
},
412
"imports": {
513
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
614
"@std/assert": "jsr:@std/assert@^0.221.0",
@@ -12,14 +20,6 @@
1220
"./iterable_weak_set": "./iterable_weak_set.ts",
1321
"./weak_value_map": "./weak_value_map.ts"
1422
},
15-
"tasks": {
16-
"test": "deno task test:unit && deno task test:lint && deno task test:format && deno task test:types",
17-
"test:format": "deno fmt --check",
18-
"test:lint": "deno lint",
19-
"test:unit": "deno test -A",
20-
"test:types": "deno check mod.ts",
21-
"build:npm": "deno run --allow-env --allow-read --allow-write --allow-net --allow-run scripts/build_npm.ts"
22-
},
2323
"lint": {
2424
"exclude": [".npm"]
2525
},

0 commit comments

Comments
 (0)