update op1

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-09-03 21:20:59 +02:00
parent 8e06bacdb0
commit 4e5adbedff
2 changed files with 4 additions and 2 deletions

View File

@@ -169,7 +169,9 @@ const buildPackages = (
dependents.forEach((dep) => {
console.log(`🔨 Building ${dep}`);
execSync(`pnpm build ${versionEnvs.join(' ')}`, {
const cmd = `pnpm build ${versionEnvs.join(' ')}`;
console.log(` Running: ${cmd}`);
execSync(cmd, {
cwd: workspacePath(packages[dep]!.localPath),
});
});