mirror of
https://github.com/danog/telegram-tt.git
synced 2025-01-22 05:11:55 +01:00
15 lines
335 B
Bash
15 lines
335 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
OUT_DIR=./build-contest
|
||
|
|
||
|
rm -rf ${OUT_DIR};
|
||
|
mkdir -p ${OUT_DIR};
|
||
|
|
||
|
npm run build -- --output-path=${OUT_DIR}/dist/ --env.noSourceMap
|
||
|
./deploy/copy_to_dist.sh ${OUT_DIR}/dist/
|
||
|
|
||
|
npm run build -- --output-path=${OUT_DIR}/src/ --env.noMinify
|
||
|
rm ${OUT_DIR}/src/index.html
|
||
|
./deploy/copy_to_dist.sh ${OUT_DIR}/src/
|