Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed May 7, 2024
1 parent 2a61ef3 commit 5f272ec
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/Function/Configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default (async (...[File]: Parameters<Interface>) => {
}
}) satisfies Interface as Interface;

import type Interface from "@Interface/Configuration.js";
import type Interface from "../Interface/Configuration.js";

export const { readFile } = await import("fs/promises");

Expand Down
2 changes: 1 addition & 1 deletion Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default ((...[_Option = {}]: Parameters<Interface>) => {
};
}) satisfies Interface as Interface;

import type Interface from "@Interface/Integration.js";
import type Interface from "../Interface/Integration.js";

import type Action from "@playform/pipe/Target/Interface/Action.js";
import type Path from "@playform/pipe/Target/Type/Path.js";
Expand Down
2 changes: 1 addition & 1 deletion Source/Interface/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default interface Interface {

import type { AstroIntegration } from "astro";

import type Option from "@Interface/Option.js";
import type Option from "../Interface/Option.js";
2 changes: 1 addition & 1 deletion Source/Interface/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export default interface Interface extends Option {
Biome?: boolean | Biome;
}

import type Biome from "@Type/Biome.js";
import type Biome from "../Type/Biome.js";

import type Option from "@playform/pipe/Target/Interface/Option.js";
2 changes: 1 addition & 1 deletion Source/Variable/Biome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export default JSON.parse(
await (await import("@Function/Configuration.js")).default("biome.json")
) satisfies Type;

import type Type from "@Type/Biome.js";
import type Type from "../Type/Biome.js";
2 changes: 1 addition & 1 deletion Source/Variable/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ export default (
},
} satisfies Interface);

import type Interface from "@Interface/Option.js";
import type Interface from "../Interface/Option.js";

0 comments on commit 5f272ec

Please sign in to comment.