(fix): now run builds in nix shell
This commit is contained in:
parent
d7aedad9b4
commit
f81235c68d
3 changed files with 6 additions and 4 deletions
|
|
@ -34,7 +34,7 @@ for (const fullPath of packageDirs) {
|
|||
const entry = fullPath.replace(packagesDir + "/", "");
|
||||
console.log(`Building ${entry}...`);
|
||||
try {
|
||||
execSync("bun --bun run build", { cwd: fullPath, stdio: "inherit" });
|
||||
execSync("bun run build", { cwd: fullPath, stdio: "inherit" });
|
||||
console.log(`${entry} built successfully.`);
|
||||
} catch {
|
||||
console.error(`Failed to build ${entry}.`);
|
||||
|
|
|
|||
Loading…
Reference in a new issue