mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
14 lines
311 B
Bash
Executable File
14 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
components_dir="$DIR/../ng2-components"
|
|
|
|
for comp_dir in $( ls "$components_dir" ); do
|
|
echo $comp_dir
|
|
test -f "$components_dir/$comp_dir/package.json" && \
|
|
cd "$components_dir/$comp_dir" && \
|
|
npm run build
|
|
done
|
|
|
|
cd ${DIR}
|