feat(FN-4686): complete Step 3 — add backend selector and exports

Fusion-Task-Id: FN-4686
Fusion-Task-Lineage: a1e58bd8-fd94-471a-b164-c396c5512fea
This commit is contained in:
Fusion (runfusion.ai)
2026-05-15 17:24:08 -07:00
committed by gsxdsm
parent 3391477716
commit 332fab63a1

View File

@@ -7,14 +7,8 @@ import { assertCleanBranchAtBase, inspectBranchConflict } from "./branch-conflic
import { worktreePoolLog } from "./logger.js";
import { isInsideConfiguredWorktreesDir, resolveWorktreesDir } from "./worktree-paths.js";
export {
type WorktreeBackend,
type WorktreeBackendKind,
NativeWorktreeBackend,
WorktrunkWorktreeBackend,
WorktrunkOperationError,
resolveWorktreeBackend,
} from "./worktree-backend.js";
export { WorktrunkOperationError, resolveWorktreeBackend } from "./worktree-backend.js";
export type { WorktreeBackend, WorktreeBackendKind } from "./worktree-backend.js";
const execAsync = promisify(exec);