TTP -> MTP, A lot of other stuff #21
2 changed files with 2 additions and 2 deletions
commit
d7aedad9b4
|
|
@ -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