Skip to content

Commit

Permalink
chore: add missing -I to deno task check
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf committed Nov 17, 2024
1 parent 3904059 commit 618ee6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lock": false,
"tasks": {
"backport": "rm -rf out && deno run --no-prompt --allow-read=. --allow-write=. https://deno.land/x/deno2node@v1.9.0/src/cli.ts",
"check": "deno lint && deno fmt --check && deno check src/mod.ts",
"check": "deno lint && deno fmt --check && deno check --allow-import src/mod.ts",
"fix": "deno lint --fix && deno fmt",
"test": "deno test --allow-import --seed=123456 --parallel ./test/",
"coverage": "rm -rf ./test/cov_profile && deno task test --coverage=./test/cov_profile && deno coverage --lcov --output=./coverage.lcov ./test/cov_profile",
Expand Down

0 comments on commit 618ee6f

Please sign in to comment.