chore: update play scripts

This commit is contained in:
Pooya Parsa
2024-08-08 21:28:29 +02:00
parent 97c818e224
commit 4c6e8b3d7d

View File

@@ -65,12 +65,12 @@
"lint": "eslint --cache . && prettier -c src test",
"lint:fix": "eslint --cache . --fix && prettier -w src test",
"prepack": "pnpm run build",
"play:bun": "bun test/fixture/bun.ts",
"play:bun": "bun --watch test/fixture/bun.ts",
"play:cf": "wrangler dev --port 3001 -c test/fixture/wrangler.toml",
"play:cf-durable": "wrangler dev --port 3001 -c test/fixture/wrangler-durable.toml",
"play:deno": "deno run --unstable-byonm -A test/fixture/deno.ts",
"play:deno": "deno run --watch --unstable-byonm -A test/fixture/deno.ts",
"play:node": "jiti test/fixture/node.ts",
"play:sse": "bun test/fixture/sse.ts",
"play:sse": "deno run --unstable-byonm -A --watch test/fixture/sse.ts",
"play:uws": "jiti test/fixture/uws.ts",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",