Skip to content

Commit 6fa6cad

Browse files
committed
fix: add lock/module tasks
1 parent 29a466c commit 6fa6cad

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

deno.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
"dist"
1212
],
1313
"tasks": {
14-
"build": "deno run -A scripts/build.ts"
14+
"build": "deno run -A scripts/build.ts",
15+
"lock:deno": "deno install --frozen=false --lockfile-only",
16+
"lock:npm": "deno run -A --no-lock --node-modules-dir=none -- npm:npm install --package-lock-only --no-fund",
17+
"lock": "deno task --no-lock lock:npm ; deno task --no-lock lock:deno ;",
18+
"modules": "deno run -A --no-lock --node-modules-dir=none -- npm:npm ci --no-fund"
1519
}
1620
}

0 commit comments

Comments
 (0)