diff --git a/lib/agent/runtime.ts b/lib/agent/runtime.ts index 39773ed..3b4145d 100644 --- a/lib/agent/runtime.ts +++ b/lib/agent/runtime.ts @@ -18,7 +18,7 @@ import { Failure, NotStarted, Stopped, Timeout, UnknownError } from './types'; import * as DAG from '../dag'; import { Path } from '../path'; import { Lens } from '../lens'; -import { Pointer } from 'lib/pointer'; +import { Pointer } from '../pointer'; class ActionError extends Error { constructor( diff --git a/lib/planner/types.ts b/lib/planner/types.ts index eb93895..ebdb5ef 100644 --- a/lib/planner/types.ts +++ b/lib/planner/types.ts @@ -1,4 +1,4 @@ -import type { Operation } from 'lib/operation'; +import type { Operation } from '../operation'; import type { Target } from '../target'; import type { Instruction, Method } from '../task';