19 lines
242 B
Bash
Executable File
19 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -rf dist lib tsconfig.tsbuildinfo .linaria-cache
|
|
|
|
echo typecheck and bundle...
|
|
node build.mjs &
|
|
pnpm tsc --noEmit &
|
|
wait -n
|
|
wait -n
|
|
|
|
echo testing...
|
|
pnpm test -- -R dot
|
|
|
|
echo packing...
|
|
rm -rf extension/
|
|
./pack.sh dev
|