Skip to content

Commit

Permalink
build: remove dry-run from new npm publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Sep 20, 2023
1 parent 7c6a5dd commit 441ba01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cd packages/core && npm publish --dry-run --access public --tag $1
cd packages/core && npm publish --access public --tag $1
cd ../../

cd packages/adaptor-strapi && npm publish --dry-run --access public --tag $1
cd packages/adaptor-strapi && npm publish --access public --tag $1
cd ../../

cd packages/plugin-heading-analyzer && npm publish --dry-run --access public --tag $1
cd packages/plugin-heading-analyzer && npm publish --access public --tag $1
cd ../../

cd packages/create-puck-app && npm publish --dry-run --access public --tag $1
cd packages/create-puck-app && npm publish --access public --tag $1
cd ../../

0 comments on commit 441ba01

Please sign in to comment.