From f666db8fa5e7700741b0e0dfef13d93b65eb0c6b Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Fri, 4 Oct 2024 20:23:14 +0300 Subject: [PATCH] --- Target/Function/Exec.d.ts | 2 +- Target/Function/File.d.ts | 2 +- Target/Function/JSON.d.ts | 2 +- Target/Interface/Build.d.ts | 2 +- package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Target/Function/Exec.d.ts b/Target/Function/Exec.d.ts index dccd40ad..e11c46b7 100644 --- a/Target/Function/Exec.d.ts +++ b/Target/Function/Exec.d.ts @@ -1,7 +1,7 @@ +import type Interface from "../Interface/Exec.js"; /** * @module Exec * */ declare const _default: Interface; export default _default; -import type Interface from "../Interface/Exec.js"; diff --git a/Target/Function/File.d.ts b/Target/Function/File.d.ts index b7b5e783..c432f2b8 100644 --- a/Target/Function/File.d.ts +++ b/Target/Function/File.d.ts @@ -1,7 +1,7 @@ +import type Interface from "../Interface/File.js"; /** * @module File * */ declare const _default: Interface; export default _default; -import type Interface from "../Interface/File.js"; diff --git a/Target/Function/JSON.d.ts b/Target/Function/JSON.d.ts index 2f74f5d6..b65f06e6 100644 --- a/Target/Function/JSON.d.ts +++ b/Target/Function/JSON.d.ts @@ -1,7 +1,7 @@ +import type Interface from "../Interface/JSON.js"; /** * @module JSON * */ declare const _default: Interface; export default _default; -import type Interface from "../Interface/JSON.js"; diff --git a/Target/Interface/Build.d.ts b/Target/Interface/Build.d.ts index 0d32e22c..0ffb6571 100644 --- a/Target/Interface/Build.d.ts +++ b/Target/Interface/Build.d.ts @@ -1,3 +1,4 @@ +import type { Pattern } from "fast-glob"; /** * @module Build * @@ -22,4 +23,3 @@ export default interface Interface { Exclude?: Pattern[]; }): Promise; } -import type { Pattern } from "fast-glob"; diff --git a/package.json b/package.json index e4be492e..f03ae6db 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "dependencies": { "@types/node": "22.7.4", "commander": "12.1.0", - "deepmerge-ts": "7.1.0", + "deepmerge-ts": "7.1.1", "esbuild": "0.24.0", "fast-glob": "3.3.2", "tsc-alias": "1.8.10",