@h-rig/standard-plugin 0.0.6-alpha.14 → 0.0.6-alpha.141
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/src/bundle.d.ts +6 -0
- package/dist/src/bundle.js +1602 -0
- package/dist/src/drift/__fixtures__/temp-repo.d.ts +9 -0
- package/dist/src/drift/__fixtures__/temp-repo.js +41 -0
- package/dist/src/drift/detect.d.ts +11 -0
- package/dist/src/drift/detect.js +299 -0
- package/dist/src/drift/extract-refs.d.ts +7 -0
- package/dist/src/drift/extract-refs.js +60 -0
- package/dist/src/drift/git-adapter.d.ts +7 -0
- package/dist/src/drift/git-adapter.js +63 -0
- package/dist/src/drift/judge.d.ts +19 -0
- package/dist/src/drift/judge.js +16 -0
- package/dist/src/drift/plugin.d.ts +63 -0
- package/dist/src/drift/plugin.js +508 -0
- package/dist/src/files-source.d.ts +18 -0
- package/dist/src/files-source.js +4 -3
- package/dist/src/github-issues-source.d.ts +80 -0
- package/dist/src/github-issues-source.js +436 -50
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.js +1102 -62
- package/dist/src/plugin.d.ts +26 -0
- package/dist/src/plugin.js +1685 -0
- package/package.json +28 -5
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { RigPluginWithRuntime } from "@rig/core";
|
|
2
|
+
import { type StandardPluginOptions } from "./plugin";
|
|
3
|
+
export type StandardProjectPluginsOptions = {
|
|
4
|
+
readonly standard?: StandardPluginOptions | undefined;
|
|
5
|
+
};
|
|
6
|
+
export declare function standardProjectPlugins(options?: StandardProjectPluginsOptions): readonly RigPluginWithRuntime[];
|