From 77a9ee18623b65f7f8103e6dab05466d28d9e7d9 Mon Sep 17 00:00:00 2001 From: GGORG Date: Wed, 20 Jul 2022 17:17:11 +0200 Subject: [PATCH] fix(utils.ts): fix import path --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 60db850..45fb64a 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -4,7 +4,7 @@ import Signale from "signale"; import { exec } from "child_process"; import { promisify } from "util"; import { Response } from "express"; -import { SharXError, UnknownError } from "../../api-types/src/errors"; +import { SharXError, UnknownError } from "../api-types/src/errors"; export function createSignale(filename: string, notify = true) { const signale = Signale.scope(basename(filename));