Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"poku": "npm:poku@3.0.3-canary.8f374795"
"poku": "npm:poku"
},
"unstable": ["sloppy-imports"]
}
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"test:bun:parallel": "bun poku -c=\"poku.config.mjs\" test",
"test:bun:global": "cross-env SUITE=global bun poku -c=\"poku.config.mjs\" test/global",
"test:deno": "npm run test:deno:parallel && npm run test:deno:global",
"test:deno:parallel": "deno run --allow-read --allow-env --allow-run npm:poku@canary -c=\"poku.config.mjs\" test",
"test:deno:global": "cross-env SUITE=global deno run --allow-read --allow-env --allow-run npm:poku@canary -c=\"poku.config.mjs\" test/global",
"test:deno:parallel": "deno run --allow-read --allow-env --allow-run npm:poku -c=\"poku.config.mjs\" test",
"test:deno:global": "cross-env SUITE=global deno run --allow-read --allow-env --allow-run npm:poku -c=\"poku.config.mjs\" test/global",
"test:docker:up": "docker compose -f test/docker-compose.yml up --abort-on-container-exit --remove-orphans",
"test:docker:down": "docker compose -f test/docker-compose.yml down",
"test:docker:node": "npm run test:docker:up -- node && npm run test:docker:down",
Expand Down Expand Up @@ -87,7 +87,7 @@
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"poku": "^3.0.3-canary.8f374795",
"poku": "^4.0.0",
"portfinder": "^1.0.38",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
Expand Down
2 changes: 2 additions & 0 deletions poku.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ const commonConfig = defineConfig({

const parallel = defineConfig({
...commonConfig,
timeout: 30000,
exclude: [/test[\\/]global/, /test[\\/]tsc-build/],
concurrency: 8,
});

const sequential = defineConfig({
...commonConfig,
timeout: 60000,
concurrency: 1,
});

Expand Down
Loading