Removed formatting from build script
This commit is contained in:
parent
38241e57eb
commit
c8ef2b248f
1 changed files with 1 additions and 2 deletions
|
|
@ -34,10 +34,9 @@ for (const fullPath of packageDirs) {
|
||||||
const entry = fullPath.replace(packagesDir + "/", "");
|
const entry = fullPath.replace(packagesDir + "/", "");
|
||||||
console.log(`Building ${entry}...`);
|
console.log(`Building ${entry}...`);
|
||||||
try {
|
try {
|
||||||
execSync("bun run format", { cwd: fullPath, stdio: "inherit" });
|
|
||||||
execSync("bun run build", { cwd: fullPath, stdio: "inherit" });
|
execSync("bun run build", { cwd: fullPath, stdio: "inherit" });
|
||||||
console.log(`${entry} built successfully.`);
|
console.log(`${entry} built successfully.`);
|
||||||
} catch (error) {
|
} catch {
|
||||||
console.error(`Failed to build ${entry}.`);
|
console.error(`Failed to build ${entry}.`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue