summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/clean_and_build_fast.sh
blob: 61015d0ce076e746f0d1145425d076ee68f2f9ed (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
# This file is in the public domain.
set -e

mv node_modules{,_saved} 
rm -rf dist lib tsconfig.tsbuildinfo
(cd ../.. && rm -rf build/web && ./contrib/build-fast-web.sh)
rm -rf extension/
./pack.sh

mv node_modules{_saved,}