2020-02-15 06:54:52 +07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
2020-04-30 18:52:54 +07:00
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
2020-02-15 07:46:00 +07:00
|
|
|
shfmt -i 2 -w -s -sr $(git ls-files "*.sh")
|
|
|
|
|
|
|
|
local prettierExts
|
|
|
|
prettierExts=(
|
|
|
|
"*.js"
|
|
|
|
"*.ts"
|
|
|
|
"*.tsx"
|
|
|
|
"*.html"
|
|
|
|
"*.json"
|
|
|
|
"*.css"
|
|
|
|
"*.md"
|
|
|
|
"*.toml"
|
|
|
|
"*.yaml"
|
|
|
|
"*.yml"
|
|
|
|
)
|
|
|
|
prettier --write --loglevel=warn $(git ls-files "${prettierExts[@]}")
|
|
|
|
|
2020-05-14 14:17:17 +07:00
|
|
|
doctoc --title '# FAQ' doc/FAQ.md > /dev/null
|
|
|
|
doctoc --title '# Setup Guide' doc/guide.md > /dev/null
|
2020-05-22 02:17:02 +07:00
|
|
|
doctoc --title '# Install' doc/install.md > /dev/null
|
2020-06-03 23:07:42 +07:00
|
|
|
doctoc --title '# npm Install Requirements' doc/npm.md > /dev/null
|
|
|
|
doctoc --title '# Contributing' doc/CONTRIBUTING.md > /dev/null
|
2020-05-14 14:17:17 +07:00
|
|
|
|
2020-02-15 07:46:00 +07:00
|
|
|
if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard) ]]; then
|
|
|
|
echo "Files need generation or are formatted incorrectly:"
|
|
|
|
git -c color.ui=always status | grep --color=no '\[31m'
|
|
|
|
echo "Please run the following locally:"
|
|
|
|
echo " yarn fmt"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-02-15 06:54:52 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|