diff --git a/Source/Function/Integration.ts b/Source/Function/Integration.ts index f2b9712..721aa6a 100644 --- a/Source/Function/Integration.ts +++ b/Source/Function/Integration.ts @@ -5,7 +5,7 @@ import __Critters from "critters"; * @module Integration * */ -export default (((...[_Option = {}]: Parameters) => { +export default ((...[_Option = {}]: Parameters) => { Object.entries(_Option).forEach(([Key, Value]) => Object.defineProperty(_Option, Key, { value: @@ -86,7 +86,7 @@ export default (((...[_Option = {}]: Parameters) => { }, }, }; -}) satisfies Type as Type); +}) satisfies Type as Type; import type Action from "files-pipe/Target/Interface/Action.js"; import type Path from "files-pipe/Target/Type/Path.js"; @@ -95,7 +95,9 @@ import type Type from "../Interface/Integration.js"; export const { default: Default } = await import("../Variable/Option.js"); export const { - default: { Cache: { Search } }, + default: { + Cache: { Search }, + }, } = await import("files-pipe/Target/Variable/Option.js"); export const { default: Merge } = await import( diff --git a/Source/Variable/Critters.ts b/Source/Variable/Critters.ts index 6b5bf9e..c313486 100644 --- a/Source/Variable/Critters.ts +++ b/Source/Variable/Critters.ts @@ -2,11 +2,11 @@ * @module Critters * */ -export default ({ +export default { preload: "media", inlineFonts: true, compress: true, pruneSource: true, -} satisfies Type); +} satisfies Type; import type Type from "../Interface/Critters.js";