20 lines
157 B
Bash
Executable File
20 lines
157 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
set -x
|
|
|
|
npm i -D
|
|
|
|
rm -rf ./**/*Zone.Identifier
|
|
|
|
set -ex
|
|
|
|
npm run format
|
|
|
|
git add .
|
|
|
|
npm run build
|
|
|
|
git commit -m"build ok,"
|
|
|
|
echo "done"
|