wallet-core/packages/taler-wallet-webextension/clean_and_build_fast.sh

12 lines
245 B
Bash
Raw Normal View History

2021-08-23 21:51:49 +02:00
#!/usr/bin/env bash
# This file is in the public domain.
2021-12-20 05:38:20 +01:00
set -e
2022-01-04 21:06:17 +01:00
mv node_modules{,_saved}
2021-12-20 05:38:20 +01:00
rm -rf dist lib tsconfig.tsbuildinfo
(cd ../.. && rm -rf build/web && ./contrib/build-fast-web.sh)
rm -rf extension/
./pack.sh
2021-08-23 21:51:49 +02:00
2022-01-04 21:06:17 +01:00
mv node_modules{_saved,}