Skip to content

Commit

Permalink
chore: make /test to be a workspace module
Browse files Browse the repository at this point in the history
rycont committed Dec 17, 2024
1 parent 0c8fdb1 commit 5af25e1
Showing 5 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions core/deno.json
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@
"tasks": {
"coverage": "rm -rf ./cov && deno test --quiet --allow-net --allow-read --parallel --coverage=cov && deno coverage --detailed ./cov && rm -rf ./cov",
"coverage-list": "rm -rf ./cov && deno test --quiet --allow-net --allow-read --parallel --coverage=cov && deno coverage ./cov && rm -rf ./cov",
"test-circular-dependencies": "deno run -A npm:madge --circular --extensions ts ./",
"test-deploy": "deno publish --dry-run --allow-dirty",
"test": "deno task test-circular-dependencies && deno task test-deploy"
"check-circular-dependencies": "deno run -A npm:madge --circular --extensions ts ./",
"check-deploy": "deno publish --dry-run --allow-dirty",
"test": "deno task check-circular-dependencies & deno task check-deploy"
},
"name": "@dalbit-yaksok/core",
"version": "0.2.0-alpha.9+20241212.nightly",
3 changes: 0 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -3,9 +3,6 @@
"@std/assert": "jsr:@std/assert@^1.0.8",
"assert": "jsr:@std/assert@^1.0.7"
},
"tasks": {
"test-cases": "deno test --quiet --allow-net --allow-read --parallel && deno lint"
},
"lint": {
"rules": {
"exclude": [
4 changes: 2 additions & 2 deletions docs/deno.json
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@
"vitepress-dev": "deno run -A npm:vitepress dev .",
"vitepress-build": "deno run -A npm:vitepress build .",
"dev": "deno task typedoc --watch & deno task vitepress-dev",
"build": "deno task purge && deno task typedoc && deno task vitepress-build",
"test": "deno task build && deno task purge"
"build": "deno task purge; deno task typedoc && deno task vitepress-build",
"test": "deno task build; deno task purge"
},
"exports": "./docs/.vitepress/dist"
}
4 changes: 2 additions & 2 deletions quickjs/deno.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
},
"version": "0.2.0-alpha.9+20241212.nightly",
"tasks": {
"test-deploy": "deno publish --dry-run --allow-dirty",
"test": "deno test --quiet --allow-net --allow-read --parallel && deno lint"
"check-deploy": "deno publish --dry-run --allow-dirty",
"test": "deno test --quiet --allow-net --allow-read --parallel & deno lint & deno task check-deploy"
}
}
5 changes: 5 additions & 0 deletions test/deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tasks": {
"test": "deno test --quiet --allow-net --allow-read --parallel & deno lint"
}
}

0 comments on commit 5af25e1

Please sign in to comment.