Skip to content

Commit

Permalink
Drop ie8
Browse files Browse the repository at this point in the history
  • Loading branch information
suryagaddipati committed Jun 19, 2015
1 parent a3087fa commit afcd895
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"stage": 0
"stage": 0,
"loose": "all"
}
14 changes: 11 additions & 3 deletions make-webpack-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module.exports = function(config){
files.forEach(this.addDependency);
}.bind(this)
}),
postcss_custom_properties,
postcss_custom_properties,
postcss_nested,
autoprefixer
];
Expand All @@ -71,8 +71,16 @@ module.exports = function(config){
plugins: config.debug ? [] : [
new webpack.EnvironmentPlugin('NODE_ENV'),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin(),
new webpack.optimize.AggressiveMergingPlugin()
new webpack.optimize.UglifyJsPlugin(
{
compressor: {
screw_ie8: true,
warnings: false
}
}
),
new webpack.optimize.AggressiveMergingPlugin(),
new webpack.optimize.OccurenceOrderPlugin()
]

};
Expand Down

0 comments on commit afcd895

Please sign in to comment.