@h-rig/standard-plugin 0.0.6-alpha.154 → 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/dist/src/bundle.d.ts +4 -3
- package/dist/src/bundle.js +45 -1823
- package/dist/src/default-lifecycle.d.ts +0 -1
- package/dist/src/index.d.ts +1 -3
- package/dist/src/index.js +51 -1843
- package/dist/src/plugin.d.ts +4 -22
- package/dist/src/plugin.js +20 -1792
- package/package.json +25 -27
- package/dist/src/drift/__fixtures__/temp-repo.d.ts +0 -9
- package/dist/src/drift/__fixtures__/temp-repo.js +0 -41
- package/dist/src/drift/detect.d.ts +0 -11
- package/dist/src/drift/detect.js +0 -299
- package/dist/src/drift/extract-refs.d.ts +0 -7
- package/dist/src/drift/extract-refs.js +0 -60
- package/dist/src/drift/git-adapter.d.ts +0 -7
- package/dist/src/drift/git-adapter.js +0 -63
- package/dist/src/drift/judge.d.ts +0 -19
- package/dist/src/drift/judge.js +0 -16
- package/dist/src/drift/metadata.d.ts +0 -13
- package/dist/src/drift/metadata.js +0 -35
- package/dist/src/drift/plugin.d.ts +0 -53
- package/dist/src/drift/plugin.js +0 -509
- package/dist/src/files-source.d.ts +0 -18
- package/dist/src/files-source.js +0 -107
- package/dist/src/github-issues-source.d.ts +0 -80
- package/dist/src/github-issues-source.js +0 -927
- package/dist/src/lifecycle-closeout.d.ts +0 -2
- package/dist/src/lifecycle-closeout.js +0 -6
- package/dist/src/run-worker-panels.d.ts +0 -15
- package/dist/src/run-worker-panels.js +0 -51
package/dist/src/index.d.ts
CHANGED
|
@@ -2,11 +2,9 @@ export { standardPlugins } from "./bundle";
|
|
|
2
2
|
export type { StandardPluginsOptions } from "./bundle";
|
|
3
3
|
export { DOCS_DRIFT_CAPABILITY_ID, DOCS_DRIFT_CLI_COMMAND, DOCS_DRIFT_CLI_ID, DOCS_DRIFT_STAGE_ID, DOCS_DRIFT_STAGE_MUTATION, DOCS_DRIFT_VALIDATOR, DOCS_DRIFT_VALIDATOR_ID, DOCS_HEALTH_PANEL_ID, createEnvGitHubCredentialProvider, createFilesTaskSource, createGitHubIssuesTaskSource, createStandardDocsDriftPlugin, createStandardProductEntrypointPlugin, createStandardTaskCliPlugin, createStandardTaskSourcesPlugin, createStateGitHubCredentialProvider, standardProductEntrypointPlugin, standardTaskCliPlugin, } from "./plugin";
|
|
4
4
|
export type { DocsDriftPluginOptions, DriftGit, DriftJudgeInput, DriftJudgeMismatch, DriftJudgeProvider, DriftReference, DriftReferenceKind, FilesTaskSourceOptions, GitHubIssuesOptions, StandardTaskSourcesPluginOptions, } from "./plugin";
|
|
5
|
-
export {
|
|
6
|
-
export type { WorkerPanelProducerContext } from "./run-worker-panels";
|
|
5
|
+
export { createRunWorkerPlugin, runWorkerPlugin } from "@rig/run-worker";
|
|
7
6
|
export { STANDARD_CLI_SURFACE_PLUGIN_NAME, createStandardCliSurfacePlugin, standardCliSurfacePlugin, } from "./cli-surface";
|
|
8
7
|
export { DEFAULT_LIFECYCLE_PLUGIN_ID, createDefaultLifecyclePlugin, defaultLifecyclePlugin, } from "./default-lifecycle";
|
|
9
|
-
export type { DefaultLifecyclePlugin } from "./default-lifecycle";
|
|
10
8
|
export { DEPENDENCY_GRAPH_CLI_ID, DEPENDENCY_GRAPH_PANEL_ID, EPICS_PANEL_ID, PEOPLE_PANEL_ID, WORKSPACE_STATUS_CLI_ID, WORKSPACE_SUMMARY_CLI_ID, createDependencyGraphPlugin, dependencyGraphPlugin, } from "./dependency-graph";
|
|
11
9
|
export { BLOCKERS_CLI_ID, BLOCKER_CLASSIFIER_PLUGIN_NAME, DEFAULT_BLOCKER_CLASSIFIER_ID, HUMAN_BLOCKERS_PANEL_ID, blockerClassifierPlugin, createBlockerClassifierPlugin, } from "./blocker-classifier";
|
|
12
10
|
export { PLANNING_PLAN_PANEL_ID, PLANNING_PLUGIN_NAME, createPlanningPlugin, planningPlugin, } from "./planning";
|