Skip to content

Commit

Permalink
Split up type check tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
NeKzor committed Jan 31, 2025
1 parent e180fe2 commit 2224faf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"tasks": {
"check": "deno fmt --check && deno lint && deno task check:types",
"check:types": "deno check --no-lock --config=src/bot/deno.json src/bot/**/*.ts && deno check --no-lock --config=src/client/deno.json src/client/**/*.ts && deno check --no-lock --config=src/server/deno.json src/server/**/*.ts src/server/**/*.tsx",
"check:types": "check:types:bot && check:types:client && check:types:server",
"check:types:bot": "deno check --no-lock --config=src/bot/deno.json src/bot/**/*.ts",
"check:types:client": "deno check --no-lock --config=src/client/deno.json src/client/**/*.ts",
"check:types:server": "deno check --no-lock --config=src/server/deno.json src/server/**/*.ts src/server/**/*.tsx",
"client": "deno task --cwd src/client dev",
"client:test": "deno task --cwd src/client test",
"compile": "deno run --allow-run=deno compile.ts",
Expand Down

0 comments on commit 2224faf

Please sign in to comment.