10 lines
194 B
Bash
Executable file
10 lines
194 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd client
|
|
|
|
rm -rf ./dist ./compiled
|
|
|
|
npm run ng build -- --prod --stats-json
|
|
NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production
|