Skip to content

Commit 1217075

Browse files
committed
chore: temporarily disable examples build
1 parent a29775b commit 1217075

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

examples/bin/build-gh-pages

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
# Builds example projects and deploys them to GH Pages
44

55
WORKSPACE_PROJECTS=(integration-pwa integration-pwa-material)
6-
STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data)
6+
STANDALONE_PROJECTS=(finance-portfolio grid-charts-integration coffee-warehouse grid-live-data spreadsheet-app)
77

88
set -e
99

1010
# Workspace Projects
11-
npm ci
12-
rm -rf dist
11+
# npm ci
12+
# rm -rf dist
1313

14-
for PROJECT in "${WORKSPACE_PROJECTS[@]}"
15-
do
16-
echo Building ${PROJECT}
17-
node --max_old_space_size=6144 ./node_modules/.bin/ng build ${PROJECT} --prod --base-href
18-
done
14+
# for PROJECT in "${WORKSPACE_PROJECTS[@]}"
15+
# do
16+
# echo Building ${PROJECT}
17+
# node --max_old_space_size=6144 ./node_modules/.bin/ng build ${PROJECT} --prod --base-href
18+
# done
1919

2020
# Standalone Projects
2121
for PROJECT in "${STANDALONE_PROJECTS[@]}"
@@ -25,7 +25,7 @@ do
2525
echo Building ${PROJECT}
2626
npm ci
2727
rm -rf dist
28-
node --max_old_space_size=6144 ./node_modules/.bin/ng build --prod --base-href
28+
node --max_old_space_size=6144 ./node_modules/.bin/ng build --configuration production --base-href
2929
mv dist/${PROJECT} ../../examples/dist
3030

3131
popd > /dev/null

0 commit comments

Comments
 (0)