Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 5, 2023
1 parent a364f61 commit c642380
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
14 changes: 7 additions & 7 deletions Configuration/ESBuild.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
declare const _default: {
format: "esm";
minify: true;
outdir: string;
bundle: true;
platform: "browser";
target: string[];
plugins: import("esbuild").Plugin[];
format: "esm";
minify: true;
outdir: string;
bundle: true;
platform: "browser";
target: string[];
plugins: import("esbuild").Plugin[];
};
export default _default;
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 c642380

Please sign in to comment.