2022-03-24 20:02:38 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
#rm -rf dist lib tsconfig.tsbuildinfo .linaria-cache
|
|
|
|
|
|
|
|
echo typecheck and bundle...
|
|
|
|
node build-fast-with-linaria.mjs &
|
|
|
|
pnpm tsc --noEmit &
|
2022-03-25 20:36:35 +01:00
|
|
|
wait -n
|
|
|
|
wait -n
|
2022-03-24 20:02:38 +01:00
|
|
|
|
|
|
|
echo testing...
|
|
|
|
pnpm test -- -R dot
|
|
|
|
|
|
|
|
echo packing...
|
|
|
|
rm -rf extension/
|
|
|
|
./pack.sh
|