From af6df73d0f58f8a744cd3065d558f7aab1b5c12a Mon Sep 17 00:00:00 2001 From: Dylan Fiedler Date: Wed, 24 Apr 2024 07:23:21 -0600 Subject: [PATCH] fix(utils): fix relative path for utils in HandlerExecutorFactory It's currently using an invalid path for referencing a relative file and breaking builds. --- src/core/modules/impl/HandlerExecutorFactory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/modules/impl/HandlerExecutorFactory.ts b/src/core/modules/impl/HandlerExecutorFactory.ts index 36c00834..014d9ce1 100644 --- a/src/core/modules/impl/HandlerExecutorFactory.ts +++ b/src/core/modules/impl/HandlerExecutorFactory.ts @@ -16,7 +16,7 @@ import { isBrowser } from '../../../utils/utils'; import { Buffer } from 'warp-isomorphic'; import { InteractionState } from '../../../contract/states/InteractionState'; import { WarpLogger } from '../../../logging/WarpLogger'; -import { XOR } from 'utils/types/mutually-exclusive'; +import { XOR } from '../../../utils/types/mutually-exclusive'; // 'require' to fix esbuild adding same lib in both cjs and esm format // https://github.com/evanw/esbuild/issues/1950