@eldrforge/kodrdriv 1.2.129 → 1.2.130
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/commands/tree.js +4 -4
- package/dist/commands/tree.js.map +1 -1
- package/dist/constants.js +1 -1
- package/package.json +3 -1
- package/dist/execution/CommandValidator.js +0 -192
- package/dist/execution/CommandValidator.js.map +0 -1
- package/dist/execution/DependencyChecker.js +0 -102
- package/dist/execution/DependencyChecker.js.map +0 -1
- package/dist/execution/DynamicTaskPool.js +0 -661
- package/dist/execution/DynamicTaskPool.js.map +0 -1
- package/dist/execution/RecoveryManager.js +0 -584
- package/dist/execution/RecoveryManager.js.map +0 -1
- package/dist/execution/ResourceMonitor.js +0 -150
- package/dist/execution/ResourceMonitor.js.map +0 -1
- package/dist/execution/Scheduler.js +0 -98
- package/dist/execution/Scheduler.js.map +0 -1
- package/dist/execution/TreeExecutionAdapter.js +0 -225
- package/dist/execution/TreeExecutionAdapter.js.map +0 -1
- package/dist/ui/ProgressFormatter.js +0 -250
- package/dist/ui/ProgressFormatter.js.map +0 -1
- package/dist/util/checkpointManager.js +0 -166
- package/dist/util/checkpointManager.js.map +0 -1
- package/dist/util/dependencyGraph.js +0 -222
- package/dist/util/dependencyGraph.js.map +0 -1
package/dist/commands/tree.js
CHANGED
|
@@ -13,7 +13,7 @@ import { execute as execute$1 } from './link.js';
|
|
|
13
13
|
import { execute as execute$2 } from './unlink.js';
|
|
14
14
|
import { execute as execute$4 } from './updates.js';
|
|
15
15
|
import { isInGitRepository, runGitWithLock } from '../util/gitMutex.js';
|
|
16
|
-
import { scanForPackageJsonFiles, buildDependencyGraph, topologicalSort, parsePackageJson, shouldExclude } from '
|
|
16
|
+
import { scanForPackageJsonFiles, buildDependencyGraph, topologicalSort, parsePackageJson, shouldExclude } from '@eldrforge/tree-core';
|
|
17
17
|
import { optimizePrecommitCommand, recordTestRun } from '../util/precommitOptimizations.js';
|
|
18
18
|
import { PerformanceTimer } from '../util/performance.js';
|
|
19
19
|
import { SimpleMutex } from '../util/mutex.js';
|
|
@@ -1084,7 +1084,7 @@ const execute = async (runConfig)=>{
|
|
|
1084
1084
|
return `Branch audit complete: All packages OK`;
|
|
1085
1085
|
}
|
|
1086
1086
|
// Handle parallel execution recovery commands
|
|
1087
|
-
const { loadRecoveryManager } = await import('
|
|
1087
|
+
const { loadRecoveryManager } = await import('@eldrforge/tree-execution');
|
|
1088
1088
|
// Handle status-parallel command
|
|
1089
1089
|
if ((_runConfig_tree5 = runConfig.tree) === null || _runConfig_tree5 === void 0 ? void 0 : _runConfig_tree5.statusParallel) {
|
|
1090
1090
|
var _runConfig_tree19, _runConfig_tree20;
|
|
@@ -2097,7 +2097,7 @@ const execute = async (runConfig)=>{
|
|
|
2097
2097
|
}
|
|
2098
2098
|
// Validate command for parallel execution if parallel mode is enabled
|
|
2099
2099
|
if ((_runConfig_tree33 = runConfig.tree) === null || _runConfig_tree33 === void 0 ? void 0 : _runConfig_tree33.parallel) {
|
|
2100
|
-
const { CommandValidator } = await import('
|
|
2100
|
+
const { CommandValidator } = await import('@eldrforge/tree-execution');
|
|
2101
2101
|
const validation = CommandValidator.validateForParallel(commandToRun, builtInCommand);
|
|
2102
2102
|
CommandValidator.logValidation(validation);
|
|
2103
2103
|
if (!validation.valid) {
|
|
@@ -2206,7 +2206,7 @@ const execute = async (runConfig)=>{
|
|
|
2206
2206
|
return preview;
|
|
2207
2207
|
}
|
|
2208
2208
|
// Import parallel execution components
|
|
2209
|
-
const { TreeExecutionAdapter, createParallelProgressLogger, formatParallelResult } = await import('
|
|
2209
|
+
const { TreeExecutionAdapter, createParallelProgressLogger, formatParallelResult } = await import('@eldrforge/tree-execution');
|
|
2210
2210
|
const os = await import('os');
|
|
2211
2211
|
// Create task pool
|
|
2212
2212
|
const adapter = new TreeExecutionAdapter({
|