https://github.com/zavalit/client-js-webpack-plugin
Pack multiple js libraries on one
https://github.com/zavalit/client-js-webpack-plugin
Last synced: 9 months ago
JSON representation
Pack multiple js libraries on one
- Host: GitHub
- URL: https://github.com/zavalit/client-js-webpack-plugin
- Owner: zavalit
- Created: 2015-09-20T13:56:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-25T17:06:37.000Z (over 10 years ago)
- Last Synced: 2025-04-09T20:45:03.492Z (10 months ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# client-js-webpack-plugin
Puts multiple js libraries into one client.js file
## Usage
// webpack.config.js
var clientJsWebpackPlugin = require('client-js-webpack-plugin'),
module.exports = {
entry: { ... },
...
plugins: [
new clientJsWebpackPlugin(['jquery/dist/jquery.min.js', 'hammerjs/hammer.min.js', 'materialize-sass-origin/js/bin/materialize.min.js'])
]
}