File tree 1 file changed +9
-9
lines changed 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 3
3
# Builds example projects and deploys them to GH Pages
4
4
5
5
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 )
7
7
8
8
set -e
9
9
10
10
# Workspace Projects
11
- npm ci
12
- rm -rf dist
11
+ # npm ci
12
+ # rm -rf dist
13
13
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
19
19
20
20
# Standalone Projects
21
21
for PROJECT in " ${STANDALONE_PROJECTS[@]} "
25
25
echo Building ${PROJECT}
26
26
npm ci
27
27
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
29
29
mv dist/${PROJECT} ../../examples/dist
30
30
31
31
popd > /dev/null
You can’t perform that action at this time.
0 commit comments