Skip to content

Commit

Permalink
build(tasks): create task and add in task
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed Oct 23, 2023
1 parent 23555b7 commit 064b65f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"tasks": {
"cache": "deno cache ./lib/**/*.ts --lock",
"lock": "deno task -q cache --lock-write && git add deno.lock",
"test": "deno test -A",
"test:fast": "deno task -q test --no-check",
"dev": "deno fmt && deno lint && deno task lock && deno task test",
"check": "deno check ./*.ts ./lib/**/*.ts",
"test": "deno test -A --no-check",
"dev": "deno fmt && deno lint && deno task lock && deno task -q check && deno task -q test",
"install": "deno install -f --name molt --allow-env --allow-read --allow-net --allow-write=. --allow-run=git,deno cli.ts",
"run:molt": "deno run --allow-env --allow-read --allow-write --allow-net=deno.land,registry.npmjs.org --allow-run=git,deno ./cli.ts",
"update": "deno task -q run:molt check ./lib/**/*.ts",
Expand Down

0 comments on commit 064b65f

Please sign in to comment.