Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jan 23, 2024
1 parent 0e768d5 commit 2c0de04
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import __Critters from "critters";
* @module Integration
*
*/
export default (((...[_Option = {}]: Parameters<Type>) => {
export default ((...[_Option = {}]: Parameters<Type>) => {
Object.entries(_Option).forEach(([Key, Value]) =>
Object.defineProperty(_Option, Key, {
value:
Expand Down Expand Up @@ -86,7 +86,7 @@ export default (((...[_Option = {}]: Parameters<Type>) => {
},
},
};
}) 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";
Expand All @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions Source/Variable/Critters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit 2c0de04

Please sign in to comment.