UNPKG

ngperf-audit

Version:

A comprehensive Angular performance analyzer that identifies performance bottlenecks, memory leaks, and optimization opportunities in Angular applications

17 lines 1.14 kB
#!/usr/bin/env node "use strict"; /** * Main entry point for ngperf package * Exports the main classes and functions for programmatic usage */ Object.defineProperty(exports, "__esModule", { value: true }); exports.LicenseChecker = exports.quickStartDemo = exports.PerformanceAnalyzerCLI = exports.PerformanceAnalyzer = void 0; var performance_analyzer_1 = require("./ngperf/performance-analyzer"); Object.defineProperty(exports, "PerformanceAnalyzer", { enumerable: true, get: function () { return performance_analyzer_1.PerformanceAnalyzer; } }); Object.defineProperty(exports, "PerformanceAnalyzerCLI", { enumerable: true, get: function () { return performance_analyzer_1.PerformanceAnalyzerCLI; } }); var quick_start_1 = require("./quick-start"); Object.defineProperty(exports, "quickStartDemo", { enumerable: true, get: function () { return quick_start_1.quickStartDemo; } }); // Optional attribution helper var license_checker_1 = require("./license-checker"); Object.defineProperty(exports, "LicenseChecker", { enumerable: true, get: function () { return license_checker_1.LicenseChecker; } }); //# sourceMappingURL=index.js.map