22 lines
491 B
Bash
Executable File
22 lines
491 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
STAGED=$(
|
|
git --no-pager diff --name-only --no-color --cached --diff-filter=d |
|
|
# Remove quotations used to surrounding filenames with special characters.
|
|
sed -e "s/^\"//" -e "s/\"$//g"
|
|
)
|
|
|
|
TARGETS=()
|
|
while IFS= read -r FILENAME
|
|
do
|
|
if [[ "$FILENAME" =~ .*\.jsx? ]] || [[ "$FILENAME" == .*\.tsx? ]]; then
|
|
TARGETS+=("${FILENAME}")
|
|
fi
|
|
done <<< "$STAGED"
|
|
|
|
if (( ${#TARGETS[@]} )); then
|
|
prettier --write "${TARGETS[@]}"
|
|
git add "${TARGETS[@]}"
|
|
fi
|