18 lines
147 B
Bash
Executable File
18 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
killall node
|
|
killall yarn
|
|
rm -rf ./**/*Zone.Identifier
|
|
|
|
npm i -D
|
|
|
|
set -ex
|
|
|
|
npm run format
|
|
|
|
npm run build
|
|
|
|
echo "done"
|