From 5b511e0ddc1e4163a9af057d4394f9179c33d6f0 Mon Sep 17 00:00:00 2001 From: hyperbola Date: Thu, 26 Sep 2024 23:51:27 +0800 Subject: [PATCH] style: fix relative import and use path alias --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index c3195d7..b3b6840 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -3,7 +3,7 @@ import fs from 'node:fs' import * as core from '@actions/core' import { globSync } from 'glob' -import { ERR_INVALID_INPUT, FirefoxAddonActionError } from './error' +import { ERR_INVALID_INPUT, FirefoxAddonActionError } from '@/error' export function stringify(e: unknown): string { if (typeof e === 'object') {