@h-rig/bundle-default-lifecycle 0.0.6-alpha.155 → 0.0.6-alpha.157

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.
Files changed (37) hide show
  1. package/dist/src/branch-naming.d.ts +15 -0
  2. package/dist/src/branch-naming.js +33 -0
  3. package/dist/src/cli.js +4 -4
  4. package/dist/src/closeoutEquivalence.d.ts +1 -1
  5. package/dist/src/control-plane/completion-verification.d.ts +19 -0
  6. package/dist/src/control-plane/completion-verification.js +1917 -0
  7. package/dist/src/control-plane/pr-automation.d.ts +87 -0
  8. package/dist/src/control-plane/pr-automation.js +638 -0
  9. package/dist/src/control-plane/task-verify.d.ts +1 -0
  10. package/dist/src/control-plane/task-verify.js +1484 -0
  11. package/dist/src/control-plane/verifier.d.ts +138 -0
  12. package/dist/src/control-plane/verifier.js +1478 -0
  13. package/dist/src/defaultPipeline.js +4 -4
  14. package/dist/src/index.js +2716 -54
  15. package/dist/src/native/closeout-runners.d.ts +5 -0
  16. package/dist/src/native/closeout-runners.js +41 -0
  17. package/dist/src/native/in-process-closeout.d.ts +40 -0
  18. package/dist/src/native/in-process-closeout.js +802 -0
  19. package/dist/src/pipelineCloseout.d.ts +1 -1
  20. package/dist/src/pipelineCloseout.js +2712 -52
  21. package/dist/src/plugin.d.ts +4 -17
  22. package/dist/src/plugin.js +2029 -25
  23. package/dist/src/stages/auto-merge.d.ts +1 -2
  24. package/dist/src/stages/auto-merge.js +657 -3
  25. package/dist/src/stages/commit.d.ts +1 -1
  26. package/dist/src/stages/commit.js +657 -3
  27. package/dist/src/stages/isolation.js +3 -2
  28. package/dist/src/stages/merge-gate.d.ts +1 -2
  29. package/dist/src/stages/merge-gate.js +1 -1
  30. package/dist/src/stages/open-pr.d.ts +2 -2
  31. package/dist/src/stages/open-pr.js +657 -3
  32. package/dist/src/stages/push.d.ts +1 -1
  33. package/dist/src/stages/push.js +657 -3
  34. package/dist/src/stages/source-closeout.d.ts +1 -1
  35. package/dist/src/stages/source-closeout.js +657 -3
  36. package/dist/src/stages/validate.d.ts +1 -1
  37. package/package.json +32 -5
@@ -1,19 +1,6 @@
1
- import { type RigPluginWithRuntime } from "@rig/core/config";
1
+ import { type RigPlugin } from "@rig/core/config";
2
2
  import type { StageRun } from "@rig/contracts";
3
- import { defaultLifecycleStages } from "./defaultPipeline";
4
3
  export declare const DEFAULT_LIFECYCLE_PLUGIN_ID = "@rig/bundle-default-lifecycle";
5
- export type DefaultLifecyclePlugin = RigPluginWithRuntime & {
6
- readonly meta: {
7
- readonly id: typeof DEFAULT_LIFECYCLE_PLUGIN_ID;
8
- readonly name: string;
9
- readonly version: string;
10
- };
11
- readonly contributes: NonNullable<RigPluginWithRuntime["contributes"]> & {
12
- readonly stages: typeof defaultLifecycleStages;
13
- };
14
- readonly runtime: {
15
- readonly stages: Readonly<Record<string, StageRun>>;
16
- };
17
- };
18
- export declare function createDefaultLifecyclePlugin(stages?: Readonly<Record<string, StageRun>>): DefaultLifecyclePlugin;
19
- export declare const defaultLifecyclePlugin: DefaultLifecyclePlugin;
4
+ export declare const COMPLETION_VERIFICATION_HOOK_ID = "@rig/bundle-default-lifecycle:completion-verification";
5
+ export declare function createDefaultLifecyclePlugin(stages?: Readonly<Record<string, StageRun>>): RigPlugin;
6
+ export declare const defaultLifecyclePlugin: RigPlugin;