Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 12, 2023
1 parent f9646f4 commit 4cbf69b
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions Configuration/ESBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@ import { copy as Copy } from "esbuild-plugin-copy";
import { rm as Remove } from "fs/promises";
const outDir = "Target";
export default {
format: "esm",
minify: true,
outdir: outDir,
bundle: true,
platform: "browser",
target: ["edge104", "esnext"],
plugins: [
{
name: "Target",
setup: (Build) =>
Build.onStart(async () => {
try {
await Remove(outDir, {
recursive: true,
});
} catch (_Error) {}
}),
},
Copy({
resolveFrom: "out",
assets: [
{
from: "./Source/styles/*.css",
to: "./styles/",
},
],
}),
],
format: "esm",
minify: true,
outdir: outDir,
bundle: true,
platform: "browser",
target: ["edge104", "esnext"],
plugins: [
{
name: "Target",
setup: (Build) => Build.onStart(async () => {
try {
await Remove(outDir, {
recursive: true,
});
}
catch (_Error) { }
}),
},
Copy({
resolveFrom: "out",
assets: [
{
from: "./Source/styles/*.css",
to: "./styles/",
},
],
}),
],
};

0 comments on commit 4cbf69b

Please sign in to comment.