@h-rig/pr-review-plugin 0.0.6-alpha.156
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/README.md +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1413 -0
- package/dist/src/plugin.d.ts +6 -0
- package/dist/src/plugin.js +1437 -0
- package/dist/src/pr-review-gate.d.ts +39 -0
- package/dist/src/pr-review-gate.js +1413 -0
- package/package.json +33 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { type RigPlugin } from "@rig/core/config";
|
|
2
|
+
export * from "./pr-review-gate";
|
|
3
|
+
export declare const PR_REVIEW_PLUGIN_ID = "@rig/pr-review-plugin";
|
|
4
|
+
export declare function createPrReviewPlugin(): RigPlugin;
|
|
5
|
+
export declare const prReviewPlugin: RigPlugin;
|
|
6
|
+
export default prReviewPlugin;
|