vite-plugin-ai-code-review 1.0.0 → 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 +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -199,4 +199,4 @@ interface CodeReviewOptions {
|
|
|
199
199
|
}
|
|
200
200
|
declare function vitePluginAICodeReview(options?: CodeReviewOptions): Plugin;
|
|
201
201
|
|
|
202
|
-
export { type CodeReviewOptions, CodeReviewer, GitUtils, Reporter, vitePluginAICodeReview };
|
|
202
|
+
export { type CodeReviewOptions, CodeReviewer, GitUtils, Reporter, vitePluginAICodeReview as default, vitePluginAICodeReview };
|
package/dist/index.d.ts
CHANGED
|
@@ -199,4 +199,4 @@ interface CodeReviewOptions {
|
|
|
199
199
|
}
|
|
200
200
|
declare function vitePluginAICodeReview(options?: CodeReviewOptions): Plugin;
|
|
201
201
|
|
|
202
|
-
export { type CodeReviewOptions, CodeReviewer, GitUtils, Reporter, vitePluginAICodeReview };
|
|
202
|
+
export { type CodeReviewOptions, CodeReviewer, GitUtils, Reporter, vitePluginAICodeReview as default, vitePluginAICodeReview };
|
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 path2 = require('path');
|
|
5
7
|
var Stream = require('stream');
|
|
@@ -42100,6 +42102,7 @@ function getSeverityIcon(severity) {
|
|
|
42100
42102
|
return "\u{1F4DD}";
|
|
42101
42103
|
}
|
|
42102
42104
|
}
|
|
42105
|
+
var index_default = vitePluginAICodeReview;
|
|
42103
42106
|
/*! Bundled license information:
|
|
42104
42107
|
|
|
42105
42108
|
web-streams-polyfill/dist/ponyfill.mjs:
|
|
@@ -42163,6 +42166,7 @@ node-domexception/index.js:
|
|
|
42163
42166
|
exports.CodeReviewer = CodeReviewer;
|
|
42164
42167
|
exports.GitUtils = GitUtils;
|
|
42165
42168
|
exports.Reporter = Reporter;
|
|
42169
|
+
exports.default = index_default;
|
|
42166
42170
|
exports.vitePluginAICodeReview = vitePluginAICodeReview;
|
|
42167
42171
|
//# sourceMappingURL=index.js.map
|
|
42168
42172
|
//# sourceMappingURL=index.js.map
|