vite-plugin-ai-perf-analyzer 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -27,4 +27,4 @@ interface PerfAnalyzerOptions {
|
|
|
27
27
|
}
|
|
28
28
|
declare function vitePluginAIPerfAnalyzer(options?: PerfAnalyzerOptions): Plugin;
|
|
29
29
|
|
|
30
|
-
export { type PerfAnalyzerOptions, vitePluginAIPerfAnalyzer };
|
|
30
|
+
export { type PerfAnalyzerOptions, vitePluginAIPerfAnalyzer as default, vitePluginAIPerfAnalyzer };
|
package/dist/index.d.ts
CHANGED
|
@@ -27,4 +27,4 @@ interface PerfAnalyzerOptions {
|
|
|
27
27
|
}
|
|
28
28
|
declare function vitePluginAIPerfAnalyzer(options?: PerfAnalyzerOptions): Plugin;
|
|
29
29
|
|
|
30
|
-
export { type PerfAnalyzerOptions, vitePluginAIPerfAnalyzer };
|
|
30
|
+
export { type PerfAnalyzerOptions, vitePluginAIPerfAnalyzer as default, vitePluginAIPerfAnalyzer };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
3
5
|
var fs3 = require('fs');
|
|
4
6
|
var path3 = require('path');
|
|
5
7
|
var pc = require('picocolors');
|
|
@@ -42671,6 +42673,7 @@ function vitePluginAIPerfAnalyzer(options = {}) {
|
|
|
42671
42673
|
}
|
|
42672
42674
|
};
|
|
42673
42675
|
}
|
|
42676
|
+
var index_default = vitePluginAIPerfAnalyzer;
|
|
42674
42677
|
/*! Bundled license information:
|
|
42675
42678
|
|
|
42676
42679
|
web-streams-polyfill/dist/ponyfill.mjs:
|
|
@@ -42731,6 +42734,7 @@ node-domexception/index.js:
|
|
|
42731
42734
|
*)
|
|
42732
42735
|
*/
|
|
42733
42736
|
|
|
42737
|
+
exports.default = index_default;
|
|
42734
42738
|
exports.vitePluginAIPerfAnalyzer = vitePluginAIPerfAnalyzer;
|
|
42735
42739
|
//# sourceMappingURL=index.js.map
|
|
42736
42740
|
//# sourceMappingURL=index.js.map
|