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 e9b6850 commit 75706ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ export default ((...[_Option = {}]: Parameters<Interface>) => {
return {
name: "@playform/remove",
hooks: {
"astro:build:done": async ({ dir }) => {
if (!Paths.size) {
"astro:build:done": ({ dir }) => {
if (Paths.size === 0) {
Paths.add(dir);
}
},
},
};
}) satisfies Interface as Interface;

import type Interface from "@Interface/Integraton.js";
import type Interface from "../Interface/Integraton.js";
import type Path from "@playform/pipe/Target/Type/Path.js";

export const { default: Default } = await import("@Variable/Option.js");
Expand Down
2 changes: 1 addition & 1 deletion Source/Interface/Integraton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export default interface Interface {
(Option: Option): AstroIntegration;
}

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

import type { AstroIntegration } from "astro";

0 comments on commit 75706ac

Please sign in to comment.