Skip to content

Commit

Permalink
Adding tasks listed in README
Browse files Browse the repository at this point in the history
  • Loading branch information
otherJL0 committed Dec 7, 2022
1 parent a71d7ae commit 71e9eef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
},
"importMap": "import-map.json",
"tasks": {
"build": "deno compile --allow-read --allow-write --allow-net --allow-run --allow-env --unstable --output tea src/app.ts",
"test": "deno test --allow-read --allow-write --allow-net --allow-run --allow-env --unstable"
"test": "deno test --allow-net --allow-read --allow-env --allow-run --allow-write --unstable",
"typecheck": "deno check --unstable ./src/app.ts",
"run": "deno run --unstable --allow-all ./src/app.ts",
"compile": "deno compile --allow-read --allow-write --allow-net --allow-run --allow-env --unstable --output tea ./src/app.ts"
},
// ignore all files since the current style deviates from deno's default style.
"fmt": {
Expand Down

0 comments on commit 71e9eef

Please sign in to comment.