Skip to content

Commit 2349354

Browse files
author
Charlie Stuart
committed
build: run tsc and vite build sequentially
it seems possible that on CI the backgrounded command is not finishing and that's why the d.ts files are not included in the release? Ether way, it doesn't seem necessary to background the task
1 parent 620d945 commit 2349354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"scripts": {
2929
"prepare": "pnpm run build",
30-
"build": "tsc -p tsconfig.esm.json & npx vite build",
30+
"build": "tsc --listEmittedFiles -p tsconfig.esm.json && npx vite build",
3131
"test": "vitest run",
3232
"test-watch": "vitest",
3333
"preversion": "pnpm run build",

0 commit comments

Comments
 (0)