|
|
|
|
|
echo "π Running pre-commit hook to check the code looks good... π"
|
|
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
|
|
|
|
echo "Checking if pnpm is available..."
|
|
if ! command -v pnpm >/dev/null 2>&1; then
|
|
echo "β pnpm not found! Please ensure pnpm is installed and available in PATH."
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo "Running typecheck..."
|
|
if ! pnpm typecheck; then
|
|
echo "β Type checking failed! Please review TypeScript types."
|
|
echo "Once you're done, don't forget to add your changes to the commit! π"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
echo "Running lint..."
|
|
if ! pnpm lint; then
|
|
echo "β Linting failed! Run 'pnpm lint:fix' to fix the easy issues."
|
|
echo "Once you're done, don't forget to add your beautification to the commit! π€©"
|
|
exit 1
|
|
fi
|
|
|
|
echo "π All checks passed! Committing changes..."
|
|
|