@h-rig/standard-plugin 0.0.6-alpha.145 → 0.0.6-alpha.147
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.js +8 -10
- package/dist/src/cli-surface.d.ts +1 -4
- package/dist/src/cli-surface.js +5 -12
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +11 -10
- package/package.json +11 -10
package/dist/src/bundle.js
CHANGED
|
@@ -596,17 +596,15 @@ var RUN_WORKER_PANEL_PLUGIN = {
|
|
|
596
596
|
};
|
|
597
597
|
|
|
598
598
|
// packages/standard-plugin/src/cli-surface.ts
|
|
599
|
-
import {
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
contributes: {}
|
|
605
|
-
});
|
|
599
|
+
import {
|
|
600
|
+
STANDARD_CLI_SURFACE_PLUGIN_NAME,
|
|
601
|
+
createStandardCliSurfacePlugin,
|
|
602
|
+
standardCliSurfacePlugin
|
|
603
|
+
} from "@rig/cli-surface-plugin/plugin";
|
|
606
604
|
|
|
607
605
|
// packages/standard-plugin/src/plugin.ts
|
|
608
606
|
import { resolve as resolve4 } from "path";
|
|
609
|
-
import { definePlugin
|
|
607
|
+
import { definePlugin } from "@rig/core/config";
|
|
610
608
|
|
|
611
609
|
// packages/standard-plugin/src/github-issues-source.ts
|
|
612
610
|
import { spawnSync } from "child_process";
|
|
@@ -1730,7 +1728,7 @@ function createLazyDocsDriftRuntimeCliCommand(options = {}) {
|
|
|
1730
1728
|
};
|
|
1731
1729
|
}
|
|
1732
1730
|
function createStandardDocsDriftPlugin(opts = {}) {
|
|
1733
|
-
return
|
|
1731
|
+
return definePlugin({
|
|
1734
1732
|
name: "@rig/standard-plugin:docs-drift",
|
|
1735
1733
|
version: "0.1.0",
|
|
1736
1734
|
contributes: {
|
|
@@ -1765,7 +1763,7 @@ function createStandardDocsDriftPlugin(opts = {}) {
|
|
|
1765
1763
|
});
|
|
1766
1764
|
}
|
|
1767
1765
|
function createStandardTaskSourcesPlugin(opts = {}) {
|
|
1768
|
-
return
|
|
1766
|
+
return definePlugin({
|
|
1769
1767
|
name: "@rig/standard-plugin:task-sources",
|
|
1770
1768
|
version: "0.1.0",
|
|
1771
1769
|
contributes: {
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export declare const standardCliSurfacePlugin: import("@rig/core").RigPluginWithRuntime;
|
|
3
|
-
export declare function createStandardCliSurfacePlugin(): import("@rig/core").RigPluginWithRuntime;
|
|
4
|
-
export default standardCliSurfacePlugin;
|
|
1
|
+
export { STANDARD_CLI_SURFACE_PLUGIN_NAME, createStandardCliSurfacePlugin, standardCliSurfacePlugin, } from "@rig/cli-surface-plugin/plugin";
|
package/dist/src/cli-surface.js
CHANGED
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// packages/standard-plugin/src/cli-surface.ts
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
contributes: {}
|
|
9
|
-
});
|
|
10
|
-
function createStandardCliSurfacePlugin() {
|
|
11
|
-
return standardCliSurfacePlugin;
|
|
12
|
-
}
|
|
13
|
-
var cli_surface_default = standardCliSurfacePlugin;
|
|
3
|
+
import {
|
|
4
|
+
STANDARD_CLI_SURFACE_PLUGIN_NAME,
|
|
5
|
+
createStandardCliSurfacePlugin,
|
|
6
|
+
standardCliSurfacePlugin
|
|
7
|
+
} from "@rig/cli-surface-plugin/plugin";
|
|
14
8
|
export {
|
|
15
9
|
standardCliSurfacePlugin,
|
|
16
|
-
cli_surface_default as default,
|
|
17
10
|
createStandardCliSurfacePlugin,
|
|
18
11
|
STANDARD_CLI_SURFACE_PLUGIN_NAME
|
|
19
12
|
};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export { DOCS_DRIFT_CAPABILITY_ID, DOCS_DRIFT_CLI_COMMAND, DOCS_DRIFT_CLI_ID, DO
|
|
|
4
4
|
export type { DocsDriftPluginOptions, DriftGit, DriftJudgeInput, DriftJudgeMismatch, DriftJudgeProvider, DriftReference, DriftReferenceKind, FilesTaskSourceOptions, GitHubIssuesOptions, StandardTaskSourcesPluginOptions, } from "./plugin";
|
|
5
5
|
export { RIG_CAPABILITY_PANEL_SLOT, RIG_RUN_STOP_PANEL_ACTION, RIG_SUPERVISOR_PANEL_ID, RUN_SUPERVISOR_PANEL_PRODUCER, RUN_SUPERVISOR_PANEL_REGISTRATION, RUN_WORKER_PANEL_PLUGIN, } from "./run-worker-panels";
|
|
6
6
|
export type { WorkerPanelProducerContext } from "./run-worker-panels";
|
|
7
|
+
export { STANDARD_CLI_SURFACE_PLUGIN_NAME, createStandardCliSurfacePlugin, standardCliSurfacePlugin, } from "./cli-surface";
|
package/dist/src/index.js
CHANGED
|
@@ -596,17 +596,15 @@ var RUN_WORKER_PANEL_PLUGIN = {
|
|
|
596
596
|
};
|
|
597
597
|
|
|
598
598
|
// packages/standard-plugin/src/cli-surface.ts
|
|
599
|
-
import {
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
contributes: {}
|
|
605
|
-
});
|
|
599
|
+
import {
|
|
600
|
+
STANDARD_CLI_SURFACE_PLUGIN_NAME,
|
|
601
|
+
createStandardCliSurfacePlugin,
|
|
602
|
+
standardCliSurfacePlugin
|
|
603
|
+
} from "@rig/cli-surface-plugin/plugin";
|
|
606
604
|
|
|
607
605
|
// packages/standard-plugin/src/plugin.ts
|
|
608
606
|
import { resolve as resolve4 } from "path";
|
|
609
|
-
import { definePlugin
|
|
607
|
+
import { definePlugin } from "@rig/core/config";
|
|
610
608
|
|
|
611
609
|
// packages/standard-plugin/src/github-issues-source.ts
|
|
612
610
|
import { spawnSync } from "child_process";
|
|
@@ -1744,7 +1742,7 @@ function createLazyDocsDriftRuntimeCliCommand(options = {}) {
|
|
|
1744
1742
|
};
|
|
1745
1743
|
}
|
|
1746
1744
|
function createStandardDocsDriftPlugin(opts = {}) {
|
|
1747
|
-
return
|
|
1745
|
+
return definePlugin({
|
|
1748
1746
|
name: "@rig/standard-plugin:docs-drift",
|
|
1749
1747
|
version: "0.1.0",
|
|
1750
1748
|
contributes: {
|
|
@@ -1779,7 +1777,7 @@ function createStandardDocsDriftPlugin(opts = {}) {
|
|
|
1779
1777
|
});
|
|
1780
1778
|
}
|
|
1781
1779
|
function createStandardTaskSourcesPlugin(opts = {}) {
|
|
1782
|
-
return
|
|
1780
|
+
return definePlugin({
|
|
1783
1781
|
name: "@rig/standard-plugin:task-sources",
|
|
1784
1782
|
version: "0.1.0",
|
|
1785
1783
|
contributes: {
|
|
@@ -1874,14 +1872,17 @@ export {
|
|
|
1874
1872
|
standardTaskCliPlugin,
|
|
1875
1873
|
standardProductEntrypointPlugin,
|
|
1876
1874
|
standardPlugins,
|
|
1875
|
+
standardCliSurfacePlugin,
|
|
1877
1876
|
createStateGitHubCredentialProvider,
|
|
1878
1877
|
createStandardTaskSourcesPlugin,
|
|
1879
1878
|
createStandardTaskCliPlugin,
|
|
1880
1879
|
createStandardProductEntrypointPlugin,
|
|
1881
1880
|
createStandardDocsDriftPlugin,
|
|
1881
|
+
createStandardCliSurfacePlugin,
|
|
1882
1882
|
createGitHubIssuesTaskSource,
|
|
1883
1883
|
createFilesTaskSource,
|
|
1884
1884
|
createEnvGitHubCredentialProvider,
|
|
1885
|
+
STANDARD_CLI_SURFACE_PLUGIN_NAME,
|
|
1885
1886
|
RUN_WORKER_PANEL_PLUGIN,
|
|
1886
1887
|
RUN_SUPERVISOR_PANEL_REGISTRATION,
|
|
1887
1888
|
RUN_SUPERVISOR_PANEL_PRODUCER,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/standard-plugin",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.147",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "First-party contribution bundle for Rig's OMP extension plugin graph; not a standalone plugin runtime.",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -73,15 +73,16 @@
|
|
|
73
73
|
"module": "./dist/src/index.js",
|
|
74
74
|
"types": "./dist/src/index.d.ts",
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@rig/blocker-classifier-plugin": "npm:@h-rig/blocker-classifier-plugin@0.0.6-alpha.
|
|
77
|
-
"@rig/bundle-default-lifecycle": "npm:@h-rig/bundle-default-lifecycle@0.0.6-alpha.
|
|
78
|
-
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.
|
|
79
|
-
"@rig/
|
|
80
|
-
"@rig/
|
|
81
|
-
"@rig/
|
|
82
|
-
"@rig/
|
|
83
|
-
"@rig/
|
|
84
|
-
"@rig/
|
|
76
|
+
"@rig/blocker-classifier-plugin": "npm:@h-rig/blocker-classifier-plugin@0.0.6-alpha.147",
|
|
77
|
+
"@rig/bundle-default-lifecycle": "npm:@h-rig/bundle-default-lifecycle@0.0.6-alpha.147",
|
|
78
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.147",
|
|
79
|
+
"@rig/cli-surface-plugin": "npm:@h-rig/cli-surface-plugin@0.0.6-alpha.147",
|
|
80
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.147",
|
|
81
|
+
"@rig/dependency-graph-plugin": "npm:@h-rig/dependency-graph-plugin@0.0.6-alpha.147",
|
|
82
|
+
"@rig/planning-plugin": "npm:@h-rig/planning-plugin@0.0.6-alpha.147",
|
|
83
|
+
"@rig/product-entrypoint-plugin": "npm:@h-rig/product-entrypoint-plugin@0.0.6-alpha.147",
|
|
84
|
+
"@rig/task-cli-plugin": "npm:@h-rig/task-cli-plugin@0.0.6-alpha.147",
|
|
85
|
+
"@rig/supervisor-plugin": "npm:@h-rig/supervisor-plugin@0.0.6-alpha.147",
|
|
85
86
|
"effect": "4.0.0-beta.90"
|
|
86
87
|
}
|
|
87
88
|
}
|