Don't build scenarios server-side

This commit is contained in:
Catalin Constantin Mititiuc 2024-06-01 11:30:11 -07:00
parent 10b27a788d
commit bf24eda9cb

View File

@ -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: {