2017-12-20 12:09:22 -05:00
|
|
|
#!/bin/sh
|
2018-01-02 16:01:45 -05:00
|
|
|
|
|
|
|
# Check if file exists with -f. Check if in in the gdk rook directory.
|
|
|
|
if [ ! -f ../GDK_ROOT ]; then
|
|
|
|
echo "Please run pre-commit from gitlab (e.g. gitlab-development-kit/gitlab) root directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-12-20 15:19:09 -05:00
|
|
|
jsfiles=$(git diff --cached --name-only --diff-filter=ACM "*.js" | tr '\n' ' ')
|
2017-12-20 12:09:22 -05:00
|
|
|
[ -z "$jsfiles" ] && exit 0
|
|
|
|
|
|
|
|
# Prettify all staged .js files
|
|
|
|
echo "$jsfiles" | xargs ./node_modules/.bin/prettier --write
|
|
|
|
|
|
|
|
# Add back the modified/prettified files to staging
|
|
|
|
echo "$jsfiles" | xargs git add
|
|
|
|
|
2017-12-20 15:48:45 -05:00
|
|
|
exit 0
|