Skip to content

Commit

Permalink
Fix import paths using lib/*
Browse files Browse the repository at this point in the history
These import paths will not work after building the module.

Change-type: patch
  • Loading branch information
pipex committed May 10, 2024
1 parent 427a158 commit 29e6263
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/agent/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion lib/planner/types.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand Down

0 comments on commit 29e6263

Please sign in to comment.