ngx-admin/scripts/publish.sh

9 lines
193 B
Bash
Raw Normal View History

2020-04-21 19:48:00 +03:00
#!/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