vite-plugin-ai-diagnostic 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
|
@@ -24,4 +24,4 @@ interface AIPluginOptions {
|
|
|
24
24
|
}
|
|
25
25
|
declare function vitePluginAIDiagnostic(options?: AIPluginOptions): Plugin;
|
|
26
26
|
|
|
27
|
-
export { type AIPluginOptions, vitePluginAIDiagnostic };
|
|
27
|
+
export { type AIPluginOptions, vitePluginAIDiagnostic as default, vitePluginAIDiagnostic };
|
package/dist/index.d.ts
CHANGED
|
@@ -24,4 +24,4 @@ interface AIPluginOptions {
|
|
|
24
24
|
}
|
|
25
25
|
declare function vitePluginAIDiagnostic(options?: AIPluginOptions): Plugin;
|
|
26
26
|
|
|
27
|
-
export { type AIPluginOptions, vitePluginAIDiagnostic };
|
|
27
|
+
export { type AIPluginOptions, vitePluginAIDiagnostic as default, vitePluginAIDiagnostic };
|
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 crypto = require('crypto');
|
|
4
6
|
var fs2 = require('fs');
|
|
5
7
|
var path = require('path');
|
|
@@ -50819,6 +50821,7 @@ function vitePluginAIDiagnostic(options = {}) {
|
|
|
50819
50821
|
}
|
|
50820
50822
|
};
|
|
50821
50823
|
}
|
|
50824
|
+
var index_default = vitePluginAIDiagnostic;
|
|
50822
50825
|
/*! Bundled license information:
|
|
50823
50826
|
|
|
50824
50827
|
@langchain/core/dist/utils/fast-json-patch/src/helpers.js:
|
|
@@ -50885,6 +50888,7 @@ node-domexception/index.js:
|
|
|
50885
50888
|
*)
|
|
50886
50889
|
*/
|
|
50887
50890
|
|
|
50891
|
+
exports.default = index_default;
|
|
50888
50892
|
exports.vitePluginAIDiagnostic = vitePluginAIDiagnostic;
|
|
50889
50893
|
//# sourceMappingURL=index.js.map
|
|
50890
50894
|
//# sourceMappingURL=index.js.map
|