mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
6 lines
No EOL
209 B
Bash
Executable file
6 lines
No EOL
209 B
Bash
Executable file
#!/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) |