Skip to content

Commit 79937cf

Browse files
committed
make webpack less verbose
1 parent 71414a5 commit 79937cf

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

packages/browser/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if (process.env.ANALYZE) {
3838

3939
/** @type { import('webpack').Configuration } */
4040
const config = {
41-
stats: process.env.WATCH === 'true' ? 'errors-warnings' : 'normal',
41+
stats: process.env.WATCH === 'true' ? 'errors-warnings' : 'minimal',
4242
node: {
4343
global: false, // do not polyfill global object, we can use getGlobal function if needed.
4444
},

packages/config-webpack/webpack.config.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const isWatch = process.env.WATCH === 'true'
1616
*/
1717
module.exports = {
1818
devtool: 'source-map',
19-
stats: isWatch ? 'errors-warnings' : 'normal',
19+
stats: isWatch ? 'errors-warnings' : 'minimal',
2020
mode: isProd ? 'production' : 'development',
2121
target: ['web', 'es5'], // target es5 for ie11 support (generates module boilerplate in es5)
2222
module: {

packages/consent/consent-tools-integration-tests/webpack.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const entries = files.reduce((acc, file) => {
1515
}, {})
1616

1717
const config: WebpackConfiguration = {
18+
stats: 'minimal',
1819
mode: 'development',
1920
devtool: 'source-map',
2021
entry: entries,

packages/signals/signals-example/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const bodyParser = require('body-parser')
1212
*/
1313

1414
module.exports = {
15+
stats: 'minimal',
1516
entry: './src/index.tsx',
1617
devtool: 'source-map',
1718
mode: 'development',

packages/signals/signals-integration-tests/webpack.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const entries = files.reduce((acc, file) => {
1818
}, {})
1919

2020
const config: WebpackConfiguration = {
21+
stats: 'minimal',
2122
mode: 'production',
2223
devtool: 'source-map',
2324
entry: entries,

0 commit comments

Comments
 (0)