babel-minify-webpack-plugin
                                
                                
                                
                                    babel-minify-webpack-plugin copied to clipboard
                            
                            
                            
                        [DEPRECATED] Babel Minify Webpack Plugin
Dealing with webpack@4 migration and investigating uglify-es I noted the following: https://github.com/webpack-contrib/uglifyjs-webpack-plugin#parallel Would this feature be possible too here? I'm not sure whether it really means any improvement when minifying...
The current build sequence for a typical webpack project is `transpile -> bundle -> minify`. As babili doesn't traverse through Objects and its properties (yet), there will not be much...
Hi. I'm using the latest version of this package - `0.2.0`. ## Issue Providing `mangle.exclude` doesn't exclude the given class/method names from being mangled. ## Minify options ```js new BabelMinifyPlugin({...
I used devtool: 'source-map' in webpack config and did not use babili-webpack-plugin. Here are some code of my source file: ``` var b = 1024; console.log(10) ``` All worked great,...