build: add release helper scripts (#22378)

PR Close #22378
This commit is contained in:
Victor Berchet
2018-02-22 12:07:17 -08:00
parent b2f366b3b7
commit f791862e52
8 changed files with 58 additions and 3 deletions

6
scripts/release/publish-next Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Use for BETA and RC releases
# Publish all packages in `dist/packages-dist` to npm (as next)
(cd dist/packages-dist; for p in `ls .`; do npm publish --access public --tag next $p; done)