This repository was archived by the owner on Aug 7, 2021. It is now read-only.
File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ module.exports = env => {
50
50
hiddenSourceMap, // --env.hiddenSourceMap
51
51
hmr, // --env.hmr,
52
52
unitTesting, // --env.unitTesting
53
+ verbose, // --env.verbose
53
54
} = env ;
54
55
55
56
const isAnySourceMapEnabled = ! ! sourceMap || ! ! hiddenSourceMap ;
@@ -262,7 +263,7 @@ module.exports = env => {
262
263
"process" : undefined ,
263
264
} ) ,
264
265
// Remove all files from the out dir.
265
- new CleanWebpackPlugin ( itemsToClean ) ,
266
+ new CleanWebpackPlugin ( itemsToClean , { verbose : ! ! verbose } ) ,
266
267
// Copy assets to out dir. Add your own globs as needed.
267
268
new CopyWebpackPlugin ( [
268
269
{ from : { glob : "fonts/**" } } ,
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ module.exports = env => {
43
43
sourceMap, // --env.sourceMap
44
44
hiddenSourceMap, // --env.hiddenSourceMap
45
45
hmr, // --env.hmr,
46
- unitTesting, // --env.unitTesting
46
+ unitTesting, // --env.unitTesting,
47
+ verbose, // --env.verbose
47
48
} = env ;
48
49
49
50
const isAnySourceMapEnabled = ! ! sourceMap || ! ! hiddenSourceMap ;
@@ -213,7 +214,7 @@ module.exports = env => {
213
214
"process" : undefined ,
214
215
} ) ,
215
216
// Remove all files from the out dir.
216
- new CleanWebpackPlugin ( itemsToClean ) ,
217
+ new CleanWebpackPlugin ( itemsToClean , { verbose : ! ! verbose } ) ,
217
218
// Copy assets to out dir. Add your own globs as needed.
218
219
new CopyWebpackPlugin ( [
219
220
{ from : { glob : "fonts/**" } } ,
Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ module.exports = env => {
44
44
sourceMap, // --env.sourceMap
45
45
hiddenSourceMap, // --env.hiddenSourceMap
46
46
hmr, // --env.hmr,
47
- unitTesting, // --env.unitTesting
47
+ unitTesting, // --env.unitTesting,
48
+ verbose, // --env.verbose
48
49
} = env ;
49
50
const isAnySourceMapEnabled = ! ! sourceMap || ! ! hiddenSourceMap ;
50
51
const externals = nsWebpack . getConvertedExternals ( env . externals ) ;
@@ -237,7 +238,7 @@ module.exports = env => {
237
238
"process" : undefined ,
238
239
} ) ,
239
240
// Remove all files from the out dir.
240
- new CleanWebpackPlugin ( itemsToClean ) ,
241
+ new CleanWebpackPlugin ( itemsToClean , { verbose : ! ! verbose } ) ,
241
242
// Copy assets to out dir. Add your own globs as needed.
242
243
new CopyWebpackPlugin ( [
243
244
{ from : { glob : "fonts/**" } } ,
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ module.exports = env => {
48
48
sourceMap, // --env.sourceMap
49
49
hiddenSourceMap, // --env.hiddenSourceMap
50
50
unitTesting, // --env.unitTesting
51
+ verbose, // --env.verbose
51
52
} = env ;
52
53
53
54
const isAnySourceMapEnabled = ! ! sourceMap || ! ! hiddenSourceMap ;
@@ -239,7 +240,7 @@ module.exports = env => {
239
240
"TNS_ENV" : JSON . stringify ( mode )
240
241
} ) ,
241
242
// Remove all files from the out dir.
242
- new CleanWebpackPlugin ( itemsToClean ) ,
243
+ new CleanWebpackPlugin ( itemsToClean , { verbose : ! ! verbose } ) ,
243
244
// Copy assets to out dir. Add your own globs as needed.
244
245
new CopyWebpackPlugin ( [
245
246
{ from : { glob : "fonts/**" } } ,
You can’t perform that action at this time.
0 commit comments