Reorg script moving in folders (#4791)

* organize script in folder part 1

* improve test e2e

* fix smart build script

* fix relative path
This commit is contained in:
Eugenio Romano
2019-05-30 17:59:22 +01:00
committed by GitHub
parent cccd95562c
commit ce60915fd9
21 changed files with 22 additions and 67 deletions

34
scripts/build/build-all-lib.sh Executable file
View File

@@ -0,0 +1,34 @@
#!/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 "====== Run testing ====="
./build-testing.sh
echo "====== Copy schema ====="
cp ../../lib/core/app-config/schema.json ../../lib/dist/core/app.config.schema.json
npm run bundlesize-check