mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
8 lines
193 B
Bash
8 lines
193 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Iterates over all modules bundled in the src/.lib and publish them
|
|
for dir in ./src/.lib/*/
|
|
do
|
|
dir=${dir%*/}
|
|
npm publish --access=public src/.lib/${dir##*/}
|
|
done
|