Skip to content

Commit

Permalink
refactor: add comment to publish-all.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Jul 9, 2024
1 parent 85c6554 commit fd63472
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/publish-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ exitstatus=0

for d in **/package.json; do
cd $(dirname $d);
# We need to use "npm publish" here in order to publish "@pnpm.e2e/has-pnpm-use-node-version" with the "pnpm.useNodeVersion" field.
# pnpm would remove the field but we need it for testing.
npm publish || exitstatus=$?;
cd ..;
if [ $exitstatus -ne 0 ]; then
Expand Down

0 comments on commit fd63472

Please sign in to comment.