mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
6 lines
No EOL
182 B
Bash
Executable file
6 lines
No EOL
182 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Use for PATCH releases
|
|
# Publish all packages in `dist/packages-dist` to npm
|
|
|
|
(cd dist/packages-dist; for p in `ls .`; do npm publish --access public $p; done) |