Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpommerening/context-entry-webpack-plugin
Use a context module as webpack entry
https://github.com/jpommerening/context-entry-webpack-plugin
Last synced: 24 days ago
JSON representation
Use a context module as webpack entry
- Host: GitHub
- URL: https://github.com/jpommerening/context-entry-webpack-plugin
- Owner: jpommerening
- Created: 2017-05-18T15:31:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-30T13:23:59.000Z (over 7 years ago)
- Last Synced: 2024-10-13T17:00:48.219Z (about 1 month ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# context-entry-webpack-plugin
> Use a context module as webpack entry
## Usage
Example:
```js
module.exports = {
output: {
filename: '[name].js'
},
plugins: [
new ContextEntryPlugin(__dirname, 'json-loader!./stuff/', true, /\.json$/, 'stuff')
]
};
```