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