Skip to content

Commit

Permalink
add verbose flag to npm publish
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Oct 30, 2024
1 parent a2a9513 commit 7444054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/sdkmeta-js/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if $LD_RELEASE_IS_DRYRUN ; then
else
if $LD_RELEASE_IS_PRERELEASE ; then
echo "Publishing with prerelease tag."
npm publish --tag prerelease --provenance --access public || { echo "npm publish failed" >&2; exit 1; }
npm publish --verbose --tag prerelease --provenance --access public || { echo "npm publish failed" >&2; exit 1; }
else
npm publish --provenance --access public || { echo "npm publish failed" >&2; exit 1; }
fi
Expand Down

0 comments on commit 7444054

Please sign in to comment.