@h-rig/dependency-graph-plugin 0.0.6-alpha.155 → 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/graph-model/dependencyGraph.d.ts +43 -0
- package/dist/src/graph-model/dependencyGraph.js +485 -0
- package/dist/src/graph-model/rollups.d.ts +6 -0
- package/dist/src/graph-model/rollups.js +166 -0
- package/dist/src/graph-model/taskGraphCodes.d.ts +3 -0
- package/dist/src/graph-model/taskGraphCodes.js +26 -0
- package/dist/src/graph-model/taskGraphLayout.d.ts +61 -0
- package/dist/src/graph-model/taskGraphLayout.js +346 -0
- package/dist/src/graph.d.ts +33 -0
- package/dist/src/graph.js +572 -0
- package/dist/src/index.js +1084 -35
- package/dist/src/plugin.d.ts +7 -2
- package/dist/src/plugin.js +1084 -35
- package/dist/src/rollups.d.ts +20 -0
- package/dist/src/rollups.js +199 -0
- package/dist/src/taskRanking.d.ts +24 -0
- package/dist/src/taskRanking.js +160 -0
- package/dist/src/taskScore.d.ts +17 -0
- package/dist/src/taskScore.js +49 -0
- package/dist/src/taskSelection.d.ts +33 -0
- package/dist/src/taskSelection.js +181 -0
- package/package.json +6 -4
package/dist/src/plugin.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { type RuntimeCliContext } from "@rig/core/config";
|
|
2
|
+
export * from "./graph";
|
|
3
|
+
export * from "./rollups";
|
|
4
|
+
export * from "./taskScore";
|
|
5
|
+
export * from "./taskRanking";
|
|
6
|
+
export * from "./taskSelection";
|
|
2
7
|
export declare const DEPENDENCY_GRAPH_PLUGIN_NAME = "@rig/dependency-graph-plugin";
|
|
3
8
|
export declare const DEPENDENCY_GRAPH_CLI_ID = "dependency-graph.graph";
|
|
4
9
|
export declare const WORKSPACE_STATUS_CLI_ID = "dependency-graph.status";
|
|
@@ -40,6 +45,6 @@ export declare const dependencyGraphCliCommands: readonly [{
|
|
|
40
45
|
readonly projectRequired: true;
|
|
41
46
|
readonly run: typeof executeSummary;
|
|
42
47
|
}];
|
|
43
|
-
export declare const dependencyGraphPlugin: import("@rig/core").
|
|
44
|
-
export declare function createDependencyGraphPlugin(): import("@rig/core").
|
|
48
|
+
export declare const dependencyGraphPlugin: import("@rig/core/config").RigPlugin;
|
|
49
|
+
export declare function createDependencyGraphPlugin(): import("@rig/core/config").RigPlugin;
|
|
45
50
|
export default dependencyGraphPlugin;
|