https://github.com/maxgraey/webpack-butternut-plugin
Webpack plugin for fast, future-friendly minifier with supporting ES2015+
https://github.com/maxgraey/webpack-butternut-plugin
butternut minifier webpack
Last synced: about 1 year ago
JSON representation
Webpack plugin for fast, future-friendly minifier with supporting ES2015+
- Host: GitHub
- URL: https://github.com/maxgraey/webpack-butternut-plugin
- Owner: MaxGraey
- License: mit
- Created: 2017-05-17T20:11:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-24T17:04:57.000Z (almost 9 years ago)
- Last Synced: 2025-04-10T10:41:07.121Z (about 1 year ago)
- Topics: butternut, minifier, webpack
- Language: JavaScript
- Homepage:
- Size: 116 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Webpack Butternut Plugin
**Webpack plugin for fast, future-friendly minifier with supporting ES2015+.**
#### Install
> via **yarn**:
>
> yarn add --dev webpack-butternut-plugin
>
> or via **npm**:
>
> npm i --save-dev webpack-butternut-plugin
#### Usage
```js
const ButternutPlugin = require('webpack-butternut-plugin');
module.exports = {
plugins: [
new ButternutPlugin({
check: true
})
]
}
```
All possible input Butternut's options you can find [this](https://github.com/Rich-Harris/butternut#javascript-api).