Move to pnpm to fix builds

This commit is contained in:
DecDuck
2025-11-19 22:55:50 +11:00
parent 490a689497
commit 28d7a741c1
16 changed files with 13867 additions and 13546 deletions

View File

@ -40,10 +40,10 @@ for (const view of views) {
process.chdir(`./${view}`);
loggerChild.info(`Install deps for "${view}"`);
await spawn("yarn");
await spawn("pnpm install");
loggerChild.info(`Building "${view}"`);
await spawn("yarn build", {
await spawn("pnpm run build", {
env: { ...process.env, NUXT_APP_BASE_URL: `/${view}/` },
});