mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add extension load in extension module * add viewer extensions * fix license header * fix node passed in the viewer extension * fix node passed in the viewer extension * startup factory extension * startup factory extension * fix script * fix beta tag build * fix build * fix build * refactoring configuration files * extension using map * fix build * fix config * fix test * fix test
32 lines
633 B
Bash
Executable File
32 lines
633 B
Bash
Executable File
#!/usr/bin/env bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR
|
|
|
|
|
|
echo "====== Run lib ====="
|
|
|
|
echo "====== Run extensions ====="
|
|
./build-extensions.sh
|
|
|
|
echo "====== run core ====="
|
|
./build-core.sh
|
|
|
|
echo "====== Run content-services ====="
|
|
./build-content-services.sh
|
|
|
|
echo "====== Run process-services ====="
|
|
./build-process-services.sh
|
|
|
|
echo "====== Run insights ====="
|
|
./build-insights.sh
|
|
|
|
echo "====== Run process-services-cloud ====="
|
|
./build-process-services-cloud.sh
|
|
|
|
echo "====== Copy schema ====="
|
|
|
|
cp ../lib/core/app-config/schema.json ../lib/dist/core/app.config.schema.json
|
|
|
|
npm run bundlesize-check
|