fix(monorepo): remove profiling which was masking errors

This commit is contained in:
Elian Doran 2025-04-18 02:09:50 +03:00
parent 30214490f4
commit 5b28e309a8
No known key found for this signature in database
2 changed files with 2 additions and 7 deletions

View File

@ -20,8 +20,7 @@
"type": "module", "type": "module",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build:webpack": "tsx node_modules/webpack/bin/webpack.js -c webpack.config.ts --progress", "build:webpack": "tsx node_modules/webpack/bin/webpack.js -c webpack.config.ts"
"build:webpack-stats": "tsx node_modules/webpack/bin/webpack.js -c webpack.config.ts --profile --json=webpack-stats.json"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "10.4.21", "autoprefixer": "10.4.21",

View File

@ -121,11 +121,7 @@ const config: Configuration = {
stylesheets: path.resolve(rootDir, "src/public/stylesheets") stylesheets: path.resolve(rootDir, "src/public/stylesheets")
} }
}, },
stats: { stats: "verbose",
all: false,
assets: true,
groupAssetsByChunk: true
},
devtool: "nosources-source-map", devtool: "nosources-source-map",
target: "electron-renderer" target: "electron-renderer"
}; };