From d41b38e8108e465a966be5d048461b30a596e4a4 Mon Sep 17 00:00:00 2001 From: Nick Thomas Date: Mon, 22 Apr 2024 14:49:43 -0700 Subject: [PATCH] wip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6d717c0..64ec001 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "lint": "eslint \"./**/*.{ts,js}\"", "build-tests": "esbuild test/index.ts --target=es2020 --bundle --keep-names > test/test-bundle.js", "test": "npm run lint && npm run build && npm run build-tests && npm run test-tape-run", - "test-tape-run": "concurrently --kill-signal=SIGINT --kill-others \"npx partykit dev\" \"cat test/index.html | npx tape-run --input=html --static=test | npx tap-spec\"", + "test-tape-run": "concurrently --success first --kill-signal=SIGINT --kill-others \"npx partykit dev\" \"cat test/index.html | npx tape-run --input=html --static=test | npx tap-spec\"", "build-cjs": "esbuild src/*.ts --format=cjs --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --out-extension:.js=.cjs --sourcemap=inline", "build-esm": "tsc --project tsconfig.build.json", "build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-cjs && npm run build-esm",