Revision c1d6df4eb772d31c35532a16161a6f6ff5926233 authored by Nicolas Janicaud Gondoin on 06 October 2022, 15:30:03 UTC, committed by GitHub on 06 October 2022, 15:30:03 UTC
Reset the mapping table for Dynamic Geojson
1 parent 48f0f4b
Raw File
pre-commit
#!/bin/sh

# Ignore husky hooks if no frontend code has been changed
git diff --cached --name-only | grep -v --quiet "^pkg/" || exit 0

. "$(dirname "$0")/_/husky.sh"

yarn run precommit
back to top