index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
path: root/esbuild-server.mjs
diff options
Diffstat (limited to 'esbuild-server.mjs')
-rw-r--r-- | esbuild-server.mjs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/esbuild-server.mjs b/esbuild-server.mjs index 323a97e..0f169f3 100644 --- a/esbuild-server.mjs +++ b/esbuild-server.mjs @@ -156,6 +156,9 @@ const resolveSvgImports = { setup(build) { build.onStart(() => { console.log("BUILD STARTED"); + console.log(build.initialOptions.outdir); + + fs.rmSync(path.resolve(build.initialOptions.outdir), { recursive: true, force: true }); }); build.onResolve({ filter: /\.svg$/ }, args => { @@ -199,7 +202,7 @@ const externalSvgToInternal = { }); const refsQuery = [...refs[filename]].join(', '); - external.querySelectorAll(refsQuery).forEach(node => defs.appendChild(node)); + external.querySelectorAll(refsQuery).forEach(node => defs.append(node)); }); }); @@ -218,7 +221,7 @@ const ctx = await esbuild.context({ outdir: 'build', plugins: [ resolveSvgImports, - externalSvgToInternal, + // externalSvgToInternal, // buildStatusPlugin ], loader: { |