Skip to content

Commit

Permalink
feat: add cli:run:dirty script (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Mar 9, 2024
1 parent 67af465 commit 8d238c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"tasks": {
// Runs the CLI
"cli:run": "deno task artifacts:build:all && deno run -A --check src/cli/main.ts --path tests/basic",
"cli:run": "deno task artifacts:build:all && deno task cli:run:dirty",
"cli:run:dirty": "deno run -A --check src/cli/main.ts --path tests/basic",

// Compiles the CLI to a binary
"cli:compile": "deno task artifacts:build:all && deno compile --check --allow-net --allow-read --allow-env --allow-run --allow-write --allow-sys --output _gen/cli src/cli/main.ts",
Expand Down

0 comments on commit 8d238c1

Please sign in to comment.