-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Remove unused
deno task
s and refine task commands
- Loading branch information
Showing
3 changed files
with
38 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
docs/ | ||
coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
"name": "@cosense/types", | ||
"version": "0.0.0", | ||
"tasks": { | ||
"check:dry": "deno fmt --check && deno lint && deno check --remote **/*.ts && deno test --parallel", | ||
"check": "deno fmt && deno lint && deno check --remote **/*.ts && deno test --parallel", | ||
"check:publish": "deno task check && deno publish --dry-run --allow-dirty", | ||
"publish": "deno run --allow-env --allow-run=deno --allow-read --allow-write=deno.jsonc jsr:@david/[email protected]" | ||
"fix": "deno fmt && deno lint --fix && deno test --allow-read --doc --parallel --shuffle && deno publish --dry-run --allow-dirty", | ||
"check": "deno fmt --check && deno lint && deno test --allow-read --doc --parallel --shuffle && deno publish --dry-run", | ||
"coverage": "deno test --allow-read=./ --parallel --shuffle --coverage && deno coverage --html", | ||
"doc": "deno doc --html rest.ts userscript.ts" | ||
}, | ||
"imports": { | ||
"@std/testing/types": "jsr:@std/testing@0/types" | ||
|
@@ -20,5 +20,9 @@ | |
"dom.iterable", | ||
"esnext" | ||
] | ||
} | ||
}, | ||
"exclude": [ | ||
"coverage/", | ||
"docs/" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters