2017-03-15 00:11:39 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -eu -o pipefail
|
|
|
|
|
|
2021-09-21 17:28:02 +00:00
|
|
|
rm -rf built/ webpack-out/
|
2017-03-15 00:11:39 +00:00
|
|
|
|
|
|
|
|
ngc
|
|
|
|
|
|
2021-09-21 17:28:02 +00:00
|
|
|
# This is to mainly copy the index.html to be packaged into the server.
|
2017-03-15 00:11:39 +00:00
|
|
|
cp -r src/* built/src
|
|
|
|
|
|
|
|
|
|
# Bundle the server which hosts all the server side apps.
|
2021-09-21 17:28:02 +00:00
|
|
|
webpack --config webpack.server.config.mjs
|
2017-03-15 00:11:39 +00:00
|
|
|
|
|
|
|
|
# Bundle the clients into individual bundles.
|
2021-09-21 17:28:02 +00:00
|
|
|
webpack --config webpack.client.config.mjs
|