Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/balthazar/butternut-webpack-plugin

:nut_and_bolt: A butternut plugin for webpack
https://github.com/balthazar/butternut-webpack-plugin

butternut webpack webpack-plugin

Last synced: 18 days ago
JSON representation

:nut_and_bolt: A butternut plugin for webpack

Awesome Lists containing this project

README

        








# butternut-webpack-plugin

yarn add --dev butternut-webpack-plugin

### Usage

```js
// webpack.conf.js
import ButternutWebpackPlugin from 'butternut-webpack-plugin'

const options = {}

export default {
// ...
plugins: [
new ButternutWebpackPlugin(options)
]
}
```

If using commonjs requires, you'll have to grab `default` instead

```js
const ButternutWebpackPlugin = require('butternut-webpack-plugin').default
```

Checkout the options you can pass to butternut on [their Readme](https://github.com/Rich-Harris/butternut#javascript-api).