@eldrforge/kodrdriv 1.2.129 → 1.2.131

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 (48) hide show
  1. package/DUPLICATION-CLEANUP.md +104 -0
  2. package/dist/application.js +1 -2
  3. package/dist/application.js.map +1 -1
  4. package/dist/commands/audio-commit.js +1 -2
  5. package/dist/commands/audio-commit.js.map +1 -1
  6. package/dist/commands/clean.js +1 -2
  7. package/dist/commands/clean.js.map +1 -1
  8. package/dist/commands/commit.js +1 -2
  9. package/dist/commands/commit.js.map +1 -1
  10. package/dist/commands/review.js +1 -2
  11. package/dist/commands/review.js.map +1 -1
  12. package/dist/commands/tree.js +5 -5
  13. package/dist/commands/tree.js.map +1 -1
  14. package/dist/commands/versions.js.map +1 -1
  15. package/dist/constants.js +1 -1
  16. package/dist/content/diff.js +1 -1
  17. package/dist/content/diff.js.map +1 -1
  18. package/dist/content/log.js +1 -1
  19. package/dist/content/log.js.map +1 -1
  20. package/package.json +9 -7
  21. package/dist/error/CancellationError.js +0 -9
  22. package/dist/error/CancellationError.js.map +0 -1
  23. package/dist/error/CommandErrors.js +0 -63
  24. package/dist/error/CommandErrors.js.map +0 -1
  25. package/dist/error/ExitError.js +0 -9
  26. package/dist/error/ExitError.js.map +0 -1
  27. package/dist/execution/CommandValidator.js +0 -192
  28. package/dist/execution/CommandValidator.js.map +0 -1
  29. package/dist/execution/DependencyChecker.js +0 -102
  30. package/dist/execution/DependencyChecker.js.map +0 -1
  31. package/dist/execution/DynamicTaskPool.js +0 -661
  32. package/dist/execution/DynamicTaskPool.js.map +0 -1
  33. package/dist/execution/RecoveryManager.js +0 -584
  34. package/dist/execution/RecoveryManager.js.map +0 -1
  35. package/dist/execution/ResourceMonitor.js +0 -150
  36. package/dist/execution/ResourceMonitor.js.map +0 -1
  37. package/dist/execution/Scheduler.js +0 -98
  38. package/dist/execution/Scheduler.js.map +0 -1
  39. package/dist/execution/TreeExecutionAdapter.js +0 -225
  40. package/dist/execution/TreeExecutionAdapter.js.map +0 -1
  41. package/dist/ui/ProgressFormatter.js +0 -250
  42. package/dist/ui/ProgressFormatter.js.map +0 -1
  43. package/dist/util/checkpointManager.js +0 -166
  44. package/dist/util/checkpointManager.js.map +0 -1
  45. package/dist/util/dependencyGraph.js +0 -222
  46. package/dist/util/dependencyGraph.js.map +0 -1
  47. package/dist/util/mutex.js +0 -96
  48. package/dist/util/mutex.js.map +0 -1
@@ -13,10 +13,10 @@ 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 '../util/dependencyGraph.js';
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
- import { SimpleMutex } from '../util/mutex.js';
19
+ import { SimpleMutex } from '@eldrforge/tree-execution';
20
20
 
21
21
  // Global state to track published versions during tree execution - protected by mutex
22
22
  let publishedVersions = [];
@@ -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('../execution/RecoveryManager.js');
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('../execution/CommandValidator.js');
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('../execution/TreeExecutionAdapter.js');
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({