- Upgraded `@eslint/js` and `eslint` to version 9.39.2 for improved linting capabilities. - Updated `zod` to version 4.2.0 in various dependencies to ensure compatibility and access to the latest features. - Standardized quotes in `pnpm-lock.yaml` and `pnpm-workspace.yaml` for consistency. - Removed obsolete `~$MPLETE-GUIDE.docx` file from the documentation directory.
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# Optional: Run security audit before pushing
|
|
# Uncomment to enable strict security checks before push
|
|
# echo "🔍 Running security audit..."
|
|
# pnpm security:check
|
|
|
|
echo "✅ Pre-push checks passed"
|
|
|