Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webpack-contrib/babel-minify-webpack-plugin
[DEPRECATED] Babel Minify Webpack Plugin
https://github.com/webpack-contrib/babel-minify-webpack-plugin
babel babel-minify webpack webpack-plugin
Last synced: 6 days ago
JSON representation
[DEPRECATED] Babel Minify Webpack Plugin
- Host: GitHub
- URL: https://github.com/webpack-contrib/babel-minify-webpack-plugin
- Owner: webpack-contrib
- License: mit
- Archived: true
- Created: 2016-08-26T11:46:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-16T14:20:07.000Z (over 4 years ago)
- Last Synced: 2024-09-07T10:38:27.570Z (about 2 months ago)
- Topics: babel, babel-minify, webpack, webpack-plugin
- Language: JavaScript
- Homepage:
- Size: 370 KB
- Stars: 493
- Watchers: 23
- Forks: 44
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome - babel-minify-webpack-plugin - Babel Minify Webpack Plugin (JavaScript)
README
DEPREACTED due to lack of support/bug fixes/ new features, project abandoned, please migrate on https://github.com/webpack-contrib/terser-webpack-plugin
----
[![npm][npm]][npm-url]
[![deps][deps]][deps-url]
[![test][test]][test-url]
[![coverage][cover]][cover-url]
[![quality][quality]][quality-url]
[![chat][chat]][chat-url]Install
```bash
npm install babel-minify-webpack-plugin --save-dev
```Usage
```js
// webpack.config.js
const MinifyPlugin = require("babel-minify-webpack-plugin");
module.exports = {
entry: //...,
output: //...,
plugins: [
new MinifyPlugin(minifyOpts, pluginOpts)
]
}
```Options
#### minifyOpts
`minifyOpts` are passed on to babel-preset-minify. You can find a list of [all available options](https://github.com/babel/minify/tree/master/packages/babel-preset-minify#options) in the package directory.
`Default: {}`
#### pluginOpts
+ `test`: Test to match files against. Default: `/\.js($|\?)/i`
+ `include`: Files to `include`. Default: `undefined`
+ `exclude`: Files to `exclude`. Default: `undefined`
+ `comments`: Preserve Comments. Default: `/^\**!|@preserve|@license|@cc_on/`, falsy value to remove all comments. Accepts function, object with property test (regex), and values.
+ `sourceMap`: Configure a sourcemap style. Default: [webpackConfig.devtool](https://webpack.js.org/configuration/devtool/)
+ `parserOpts`: Configure babel with special parser options.
+ `babel`: Pass in a custom `babel-core` instead. Default: `require("babel-core")`
+ `minifyPreset`: Pass in a custom `babel-minify` preset instead. Default: `require("babel-preset-minify")`Why
You can also use [babel-loader](https://github.com/babel/babel-loader) for webpack and include `minify` [as a preset](https://github.com/babel/minify#babel-preset) and should be much faster than using this - as babel-minify will operate on smaller file sizes. But then, why does this plugin exist at all? -
+ A webpack loader operates on single files and the minify preset as a webpack loader is going to consider each file to be executed directly in the browser global scope (by default) and will not optimize some things in the toplevel scope. To enable optimizations to take place in the top level scope of the file, use `mangle: { topLevel: true }` in minifyOptions.
+ When you exclude `node_modules` from being run through the babel-loader, babel-minify optimizations are not applied to the excluded files as it doesn't pass through the minifier.
+ When you use the babel-loader with webpack, the code generated by webpack for the module system doesn't go through the loader and is not optimized by babel-minify.
+ A webpack plugin can operate on the entire chunk/bundle output and can optimize the whole bundle and you can see some differences in minified output. But this will be a lot slower as the file size is usually really huge. So there is [another idea](https://github.com/webpack-contrib/babel-minify-webpack-plugin/issues/8) where we can apply some optimizations as a part of the loader and some optimizations in a plugin.Maintainers
Boopathi Rajaa
Juho Vepsäläinen
Joshua Wiens
Kees Kluskens
Sean Larkin
[npm]: https://img.shields.io/npm/v/babel-minify-webpack-plugin.svg
[npm-url]: https://npmjs.com/package/babel-minify-webpack-plugin[deps]: https://david-dm.org/webpack-contrib/babel-minify-webpack-plugin.svg
[deps-url]: https://david-dm.org/webpack-contrib/babel-minify-webpack-plugin[chat]: https://img.shields.io/badge/gitter-webpack%2Fwebpack-brightgreen.svg
[chat-url]: https://gitter.im/webpack/webpack[test]: https://travis-ci.org/webpack-contrib/babel-minify-webpack-plugin.svg?branch=master
[test-url]: https://travis-ci.org/webpack-contrib/babel-minify-webpack-plugin[cover]: https://codecov.io/gh/webpack-contrib/babel-minify-webpack-plugin/branch/master/graph/badge.svg
[cover-url]: https://codecov.io/gh/webpack-contrib/babel-minify-webpack-plugin[quality]: https://www.bithound.io/github/webpack-contrib/babel-minify-webpack-plugin/badges/score.svg
[quality-url]: https://www.bithound.io/github/webpack-contrib/babel-minify-webpack-plugin