8 lines
87 B
Bash
Executable file
8 lines
87 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
yarn run lint
|
|
|
|
rm -rf ./dist
|
|
yarn run build
|
|
gh-pages -d dist
|