Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 25, 2023
1 parent dbc588b commit 934c558
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 42 deletions.
87 changes: 47 additions & 40 deletions Configuration/ESBuild.js
Original file line number Diff line number Diff line change
@@ -1,42 +1,49 @@
export default {
color: true,
format: "esm",
metafile: true,
minify: true,
outdir: "Target",
platform: "node",
target: "esnext",
write: true,
logLevel: "debug",
plugins: [
{
name: "Target",
setup({ onStart, initialOptions: { outdir } }) {
onStart(async () => {
try {
outdir
? await (await import("fs/promises")).rm(outdir, {
recursive: true,
})
: {};
}
catch (_Error) {
console.log(_Error);
}
});
},
},
(await import("esbuild-plugin-copy")).copy({
resolveFrom: "out",
assets: [
{
from: "./Source/Notation/biome.json",
to: "./Notation/",
},
],
}),
],
define: {
"process.env.VERSION_PACKAGE": `'${(await (await import("typescript-esbuild/Target/Function/JSON.js")).default("package.json"))?.version}'`,
},
color: true,
format: "esm",
metafile: true,
minify: true,
outdir: "Target",
platform: "node",
target: "esnext",
write: true,
logLevel: "debug",
plugins: [
{
name: "Target",
setup({ onStart, initialOptions: { outdir } }) {
onStart(async () => {
try {
outdir
? await (
await import("fs/promises")
).rm(outdir, {
recursive: true,
})
: {};
} catch (_Error) {
console.log(_Error);
}
});
},
},
(await import("esbuild-plugin-copy")).copy({
resolveFrom: "out",
assets: [
{
from: "./Source/Notation/biome.json",
to: "./Notation/",
},
],
}),
],
define: {
"process.env.VERSION_PACKAGE": `'${
(
await (
await import("typescript-esbuild/Target/Function/JSON.js")
).default("package.json")
)?.version
}'`,
},
};
3 changes: 1 addition & 2 deletions Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default ((...[_Option = {}]: Parameters<Type>) => {
// Biome["$schema"] = undefined;
// _Biome.applyConfiguration(Biome);
// }

// for (const Path of Paths) {
// await (
// await (
Expand All @@ -86,7 +86,6 @@ import type Type from "../Interface/Integration.js";
// import type Action from "files-pipe/Target/Interface/Action.js";
import type Path from "files-pipe/Target/Type/Path.js";


export const { default: Default } = await import("../Variable/Option.js");

export const { default: Merge } = await import(
Expand Down

0 comments on commit 934c558

Please sign in to comment.