Skip to content

Commit 152f783

Browse files
authored
Fix build. (#589)
All the e2e tests started failing after merging #587, see https://github.com/voidzero-dev/vite-plus/actions/runs/21872859706/job/63134846956 I *believe* this is due to an ordering issue and it's why I added the explicit first build step earlier, but I removed it. This change ensures the prompts package is built before the global CLI. Please let me know if there is a quick way to verify this locally since the usual tests all seem to pass without this change.
1 parent 7328beb commit 152f783

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/global/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "module",
1919
"scripts": {
2020
"build": "pnpm build-ts && pnpm build-native",
21-
"build-ts": "rolldown -c rolldown.config.ts",
21+
"build-ts": "pnpm --filter=@voidzero-dev/vite-plus-prompts build && rolldown -c rolldown.config.ts",
2222
"build-native": "oxnode -C dev ./build.ts",
2323
"copy-binding": "cp ./binding/*.node ./dist",
2424
"snap-test": "tool snap-test",

0 commit comments

Comments
 (0)