UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

10 lines (9 loc) 929 B
export { CURRENT_RUN_STATE_FORMAT_VERSION, NewerRunStateFormatError, migrateRunsDir, runDir, readRunState, writeRunState, findActiveRun, createRun, } from './run-state'; export type { MigrateRunStatus, MigrateRunRound, MigrateStepStatus, PromptOutcomeStatus, MigrateStepOutcome, MigrateStepPromptOutcome, MigrateStep, MigrateCommitKind, MigrateCommitLedgerEntry, MigrateRunAnalytics, MigrateRunState, } from './run-state'; export { applyStepEvent, hasPendingCommitDebt } from './state-machine'; export type { StepAction, StepEvent, ApplyStepEventResult, } from './state-machine'; export { createRunId, computePlanHash } from './run-id'; export { runSingleMigrationWorker } from './worker'; export type { RunSingleMigrationWorkerInput } from './worker'; export { runOrchestratorInit, runOrchestratorReconcile } from './orchestrator'; export type { RunOrchestratorInitInput, RunOrchestratorReconcileInput, } from './orchestrator';