build tool cleanup

This commit is contained in:
Matt Walsh
2025-06-16 16:00:16 -05:00
parent bf4819b241
commit 3d75384848
3 changed files with 611 additions and 112 deletions

View File

@@ -98,7 +98,6 @@ const buildJs = () => src(mjsSources)
const workerSources = [
'./server/scripts/modules/radar-worker.mjs',
'./server/scripts/modules/radar-worker-bg-fg.mjs',
];
const buildWorkers = () => {
@@ -113,7 +112,6 @@ const buildWorkers = () => {
output,
entry: {
'radar-worker': workerSources[0],
'radar-worker-bg-fg': workerSources[1],
},
};
return src(workerSources)