Skip to content

Commit 0003344

Browse files
committed
fix: correct CI command order - build before test:types
tsd requires dist/index.d.ts to exist, so build must run before test:types
1 parent 7a3a092 commit 0003344

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
@@ -34,7 +34,7 @@
3434
"build": "tsup src/index.ts --format cjs,esm --dts",
3535
"lint": "tsc --project tsconfig.build.json",
3636
"lint:all": "tsc",
37-
"ci": "pnpm run lint && pnpm run test && pnpm run test:types && pnpm run build",
37+
"ci": "pnpm run lint && pnpm run test && pnpm run build && pnpm run test:types",
3838
"release": "pnpm run ci && changeset publish"
3939
},
4040
"license": "MIT",

0 commit comments

Comments
 (0)