Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beckan/webpack-js-concat-plugin
A Javascript concat plugin for webpack
https://github.com/beckan/webpack-js-concat-plugin
Last synced: 10 days ago
JSON representation
A Javascript concat plugin for webpack
- Host: GitHub
- URL: https://github.com/beckan/webpack-js-concat-plugin
- Owner: beckan
- License: mit
- Created: 2018-06-10T18:38:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-20T16:59:18.000Z (over 6 years ago)
- Last Synced: 2024-11-14T19:45:10.950Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-js-concat-plugin
A Javascript concat plugin for webpack
## Requirements
This module requires a minimum of Node v6.9.0 and Webpack 4.
## Getting Started
To begin, you'll need to install `webpack-js-concat-plugin`:
```console
$ npm install webpack-js-concat-plugin --save-dev
```Then add the plugin to your `webpack` config. For example:
```js
// webpack.config.js
const ConcatPlugin = require('webpack-js-concat-plugin');module.exports = {
// ...
plugins: [
new ConcatPlugin(options),
],
// ...
}
```And run `webpack` via your preferred method.
## Options
### `files`
Type: `Object`
Default: `{}`### `output`
Type: `String`
Default: `./`## License
#### [MIT](./LICENSE)