Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Eliminate parallelism in npm package.json modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher committed Mar 19, 2024
1 parent f99a961 commit c0aada2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-prerelease-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
pnpm changeset pre exit
find packages/* -maxdepth 0 -type d -print0 | \
xargs -t0 -n 1 -P $(nproc) -I {} \
xargs -t0 -n 1 -I {} \
sh -c 'cd {} && pnpm pkg delete devDependencies'
pnpm changeset version --snapshot preview
pnpm turbo publish-packages --concurrency=100% --filter=\!@solana/web3.js
Expand Down

0 comments on commit c0aada2

Please sign in to comment.