Assist_Design/scripts/bundle-analyze.sh
tema 9c796f59da Enhance Freebit integration and improve error handling
- Added FreebitMapperService to facilitate account normalization and improve code organization.
- Updated FreebitAuthService to streamline error handling and response parsing, replacing custom exceptions with standard error messages.
- Enhanced FreebitClientService to ensure proper URL construction and improved logging for API errors.
- Refactored FreebitOperationsService to include new request types and validation, ensuring better handling of SIM operations.
- Updated FreebitOrchestratorService to utilize the new mapper for account normalization across various methods.
- Improved SIM management features in the portal, including better handling of SIM details and usage information.
- Refactored components to enhance user experience and maintainability, including updates to the ChangePlanModal and SimActions components.
2025-11-21 18:41:14 +09:00

15 lines
287 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "📊 Analyzing bundle sizes..."
# Frontend bundle analysis
echo "🎯 Frontend bundle analysis..."
cd apps/portal
pnpm run build:analyze
echo "✅ Frontend analysis complete - check browser for results"
cd ../..
echo "🎉 Bundle analysis complete!"