2020-02-15 07:54:52 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
2020-04-30 19:52:54 +08:00
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
2020-12-17 07:56:44 +08:00
|
|
|
shfmt -i 2 -w -sr $(git ls-files "*.sh" | grep -v "lib/vscode")
|
2020-02-15 08:46:00 +08:00
|
|
|
|
|
|
|
local prettierExts
|
|
|
|
prettierExts=(
|
|
|
|
"*.js"
|
|
|
|
"*.ts"
|
|
|
|
"*.tsx"
|
|
|
|
"*.html"
|
|
|
|
"*.json"
|
|
|
|
"*.css"
|
|
|
|
"*.md"
|
|
|
|
"*.toml"
|
|
|
|
"*.yaml"
|
|
|
|
"*.yml"
|
|
|
|
)
|
2020-11-14 06:32:14 +08:00
|
|
|
prettier --write --loglevel=warn $(
|
2020-12-17 07:56:44 +08:00
|
|
|
git ls-files "${prettierExts[@]}" | grep -v "lib/vscode" | grep -v 'helm-chart'
|
2020-11-14 06:32:14 +08:00
|
|
|
)
|
2020-02-15 08:46:00 +08:00
|
|
|
|
2020-05-14 15:17:17 +08:00
|
|
|
doctoc --title '# FAQ' doc/FAQ.md > /dev/null
|
|
|
|
doctoc --title '# Setup Guide' doc/guide.md > /dev/null
|
2020-05-22 03:17:02 +08:00
|
|
|
doctoc --title '# Install' doc/install.md > /dev/null
|
2020-06-04 00:07:42 +08:00
|
|
|
doctoc --title '# npm Install Requirements' doc/npm.md > /dev/null
|
|
|
|
doctoc --title '# Contributing' doc/CONTRIBUTING.md > /dev/null
|
2020-10-30 16:48:51 +08:00
|
|
|
doctoc --title '# iPad' doc/ipad.md > /dev/null
|
2020-05-14 15:17:17 +08:00
|
|
|
|
2020-12-18 01:00:32 +08:00
|
|
|
if [[ ${CI-} && $(git ls-files --other --modified --exclude-standard) ]]; then
|
2020-02-15 08:46:00 +08:00
|
|
|
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 07:54:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|