- Disabled linting in the pre-commit hook during active development, with a reminder to re-enable it before production. - Simplified the import of `tsconfig-paths` in `main.ts` for better readability. - Updated exception filter to cast status to `HttpStatus` for TypeScript compatibility. - Refactored Freebit module imports to streamline dependency management. - Re-exported SIM management types in Freebit API type definitions for better integration. - Improved type handling in Freebit operations service by specifying the type for `voiceOptionsService`. - Cleaned up unused code in SIM management service and added optional fields in SIM schema for enhanced functionality.
22 lines
601 B
Bash
Executable File
22 lines
601 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# Run type checking
|
|
pnpm type-check
|
|
|
|
# Linting disabled during active development phase
|
|
# TODO: Re-enable before production release
|
|
# pnpm lint
|
|
|
|
# Quick security check (only fail on high/critical vulnerabilities)
|
|
echo "🔒 Running security audit..."
|
|
if ! pnpm audit --audit-level=high > /dev/null 2>&1; then
|
|
echo ""
|
|
echo "⚠️ High or critical security vulnerabilities detected!"
|
|
echo "Run 'pnpm audit' to see details and 'pnpm update' to fix."
|
|
echo ""
|
|
# Uncomment the line below to block commits with vulnerabilities:
|
|
# exit 1
|
|
fi
|
|
|