build tool cleanup

This commit is contained in:
Matt Walsh 2025-06-16 16:00:16 -05:00
commit 3d75384848
No known key found for this signature in database
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)