File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 9
9
"clean-start" : " npm run clean && npm start" ,
10
10
"watch" : " webpack --watch --progress --profile --colors --display-error-details --display-cached" ,
11
11
"build" : " webpack --progress --profile --colors --display-error-details --display-cached" ,
12
- "build:prod" : " webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached --bail " ,
12
+ "build:prod" : " webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached" ,
13
13
"server" : " webpack-dev-server --hot --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/" ,
14
14
"test" : " karma start" ,
15
15
"docs" : " typedoc --options typedoc.json src/**/*.ts" ,
Original file line number Diff line number Diff line change @@ -84,10 +84,7 @@ module.exports = helpers.defaults({
84
84
new DedupePlugin ( ) ,
85
85
new UglifyJsPlugin ( {
86
86
beautify : false ,
87
- mangle : {
88
- screw_ie8 : true ,
89
- except : [ 'RouterLink' ] // needed for uglify RouterLink problem
90
- } ,
87
+ mangle : false ,
91
88
compress : { screw_ie8 : true } ,
92
89
comments : false
93
90
} ) ,
You can’t perform that action at this time.
0 commit comments