Skip to content

Commit

Permalink
chore: use "nx run-many" in beachball hook
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter committed Mar 9, 2022
1 parent c1b1757 commit 7e18460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beachball.hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
async prepublish() {
// `beachball` runs this hook for every package, we want to run it only once.
if (!completedPrepublish) {
await sh('yarn build --skip-nx-cache');
await sh('yarn nx run-many --target=build --all --parallel --max-parallel=3');
completedPrepublish = true;
}
},
Expand Down

0 comments on commit 7e18460

Please sign in to comment.