Update all js deps
Some checks failed
Unit and Build Tests / bundle-up-to-date (push) Has been cancelled
Unit and Build Tests / cross-compile-test (push) Has been cancelled
pre-release / Pre Release Docker (push) Has been cancelled
Quick build test / quick-build-test (push) Has been cancelled

This commit is contained in:
Soren Hansen
2025-08-03 16:46:10 -07:00
parent 2bee116ca3
commit 4606fadaa9
10 changed files with 382 additions and 245 deletions

View File

@@ -11,7 +11,6 @@ if (process.env.DEV === '1') {
}
module.exports = {
entry: "./src/main.ts",
entry: {
"gotty": "./src/main.ts",
},
@@ -52,6 +51,10 @@ module.exports = {
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
minimizer: [new TerserPlugin({
terserOptions: {
ecma: "2016"
}
})],
},
};