Alex Eagle 102ed3b03c test: move platform-server integration test (#22810)
Now it lives in our standard location for tests against npm packages

PR Close #22810
2018-04-13 16:30:50 -07:00

16 lines
346 B
Bash
Executable File

#!/usr/bin/env bash
set -eu -o pipefail
rm -rf built
ngc
# This is to mainlt copy the index.html to be packaged into the server.
cp -r src/* built/src
# Bundle the server which hosts all the server side apps.
webpack --config webpack.server.config.js
# Bundle the clients into individual bundles.
webpack --config webpack.client.config.js