From e573c005a480765b9bac30b9e7e9ad30040c08ac Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Tue, 20 Feb 2024 16:43:34 +0000
Subject: [PATCH] Remove the workers from the entry exports in webpack. We will
 load them via functions instead

---
 webpack.config.js | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/webpack.config.js b/webpack.config.js
index 8e0c1ee..91b52bd 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -11,11 +11,7 @@ export const BundleVersion = pkg.name + '-' + pkg.version;
 module.exports = {
     entry: {
         bundle: './src/index.ts',
-        logFileWorker: './assets/jsutils/logFileWorker.js',
-        channelsIndexedDbWorker: './assets/jsutils/channelsIndexedDbWorker.js',
-        dmIndexedDbWorker: './assets/jsutils/dmIndexedDbWorker.js',
-        ndf: './assets/jsutils/ndf.js',
-        stateIndexedDbWorker: './assets/jsutils/stateIndexedDbWorker.js',
+        ndf: './ndf.js',
         wasm_exec: './wasm_exec.js',
     },
     devtool: 'inline-source-map',
-- 
GitLab