https://github.com/baptistelambert/webpack-benny-hill-plugin
🎷 The most useful webpack plugin of all time.
https://github.com/baptistelambert/webpack-benny-hill-plugin
fun plugin webpack
Last synced: 2 months ago
JSON representation
🎷 The most useful webpack plugin of all time.
- Host: GitHub
- URL: https://github.com/baptistelambert/webpack-benny-hill-plugin
- Owner: baptistelambert
- Created: 2017-09-01T10:00:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-01T10:04:57.000Z (almost 9 years ago)
- Last Synced: 2025-09-27T23:29:00.184Z (9 months ago)
- Topics: fun, plugin, webpack
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/webpack-benny-hill-plugin
- Size: 4.03 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack Benny Hill Plugin 🔥💯🎷
THE MOST USEFUL WEBPACK PLUGIN OF ALL TIME.
*This was made for fun just to see how webpack plugins could work.*
## Installation
npm
```
npm install --save-dev webpack-benny-hill-plugin
```
yarn
```
yarn add -D webpack-benny-hill-plugin
```
## Usage
**webpack.config.js**
```js
const BennyHillPlugin = require('webpack-benny-hill-plugin');
module.exports = {
/*
Rest of your webpack configuration
*/
plugins: [
new BennyHillPlugin(),
/*
Rest of your plugins
*/
]
};
```