From 0347587824e9d9e9d716a169f0dc324bfd8c3405 Mon Sep 17 00:00:00 2001 From: Stefani Nikolova Date: Mon, 13 May 2024 18:24:32 +0300 Subject: [PATCH] chore: temporarily disable examples build --- examples/bin/build-gh-pages | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/bin/build-gh-pages b/examples/bin/build-gh-pages index 4503600a..da747153 100755 --- a/examples/bin/build-gh-pages +++ b/examples/bin/build-gh-pages @@ -3,19 +3,19 @@ # Builds example projects and deploys them to GH Pages WORKSPACE_PROJECTS=(integration-pwa integration-pwa-material) -STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data) +STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data spreadsheet-app) set -e # Workspace Projects -npm ci -rm -rf dist +# npm ci +# rm -rf dist -for PROJECT in "${WORKSPACE_PROJECTS[@]}" -do - echo Building ${PROJECT} - node --max_old_space_size=6144 ./node_modules/.bin/ng build ${PROJECT} --prod --base-href -done +# for PROJECT in "${WORKSPACE_PROJECTS[@]}" +# do +# echo Building ${PROJECT} +# node --max_old_space_size=6144 ./node_modules/.bin/ng build ${PROJECT} --prod --base-href +# done # Standalone Projects for PROJECT in "${STANDALONE_PROJECTS[@]}" @@ -25,7 +25,7 @@ do echo Building ${PROJECT} npm ci rm -rf dist - node --max_old_space_size=6144 ./node_modules/.bin/ng build --prod --base-href + node --max_old_space_size=6144 ./node_modules/.bin/ng build --configuration production --base-href mv dist/${PROJECT} ../../examples/dist popd > /dev/null