Skip to content

Commit

Permalink
☕ Upgrade devtools
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed May 14, 2023
1 parent ae4a9c0 commit 9bc183c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.tools
.tool-versions
deno.lock
.coverage
7 changes: 4 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"lock": false,
"tasks": {
"test": "deno test --no-lock --unstable -A --parallel --shuffle",
"check": "deno check --no-lock --unstable $(find . -name '*.ts')",
"upgrade": "deno run --no-lock -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')"
"test": "deno test --unstable -A --parallel --shuffle --doc --coverage=.coverage",
"check": "deno check --unstable $(find . -name '*.ts')",
"coverage": "deno coverage --unstable .coverage",
"upgrade": "deno run -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')"
}
}

0 comments on commit 9bc183c

Please sign in to comment.