publish-to-verdaccio.sh 537 B

123456789101112
  1. #!/bin/bash
  2. # A shell script which publishes all packages to a local Verdaccio registry for testing / local dev purposes
  3. VERDACCIO=http://localhost:4873/
  4. cd ../packages/admin-ui-plugin && npm publish -reg $VERDACCIO &&\
  5. cd ../asset-server-plugin && npm publish -reg $VERDACCIO &&\
  6. cd ../common && npm publish -reg $VERDACCIO &&\
  7. cd ../core && npm publish -reg $VERDACCIO &&\
  8. cd ../create && npm publish -reg $VERDACCIO &&\
  9. cd ../elasticsearch-plugin && npm publish -reg $VERDACCIO &&\
  10. cd ../email-plugin && npm publish -reg $VERDACCIO