21 lines
202 B
Bash
Executable File
21 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
killall node
|
|
killall yarn
|
|
rm -rf ./**/*Zone.Identifier
|
|
|
|
# yarn db:push
|
|
# npx nodemon --ext ts,tsx --exec "yarn tsc"
|
|
|
|
set -ex
|
|
|
|
yarn fm:fix
|
|
|
|
yarn tsc
|
|
|
|
yarn build
|
|
|
|
echo "done"
|