mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
7d9de17935
PR Close #22378 PR Close #22781
6 lines
209 B
Bash
Executable File
6 lines
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) |