From 569e506f328b8115672d5caf9f5841d77642f45d Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 18 Nov 2025 09:09:56 -0800 Subject: [PATCH] Try rel imports --- plugins/template-function-response/src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/template-function-response/src/index.ts b/plugins/template-function-response/src/index.ts index 3caa5aba..a9358bd4 100644 --- a/plugins/template-function-response/src/index.ts +++ b/plugins/template-function-response/src/index.ts @@ -1,7 +1,7 @@ -import type { JSONPathResult } from '../template-function-json'; -import { filterJSONPath } from '../template-function-json'; -import type { XPathResult } from '../template-function-xml'; -import { filterXPath } from '../template-function-xml'; +import type { JSONPathResult } from '../../template-function-json'; +import { filterJSONPath } from '../../template-function-json'; +import type { XPathResult } from '../../template-function-xml'; +import { filterXPath } from '../../template-function-xml'; import type { CallTemplateFunctionArgs, Context,