aboutsummaryrefslogtreecommitdiffstats
path: root/.husky/pre-commit
blob: c22c5610b5c45a3f674f10d3cdf14954b162391d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

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

# Conditionally invoke so as to avoid running npm commands if this is a clean checkout (ie before installing npm modules)
if [ -f $FILE_NAME ]; then
  . $FILE_NAME
  pnpm prepare
  pnpm prepare-code
fi