Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aurimasniekis/webpack-glob-entries
A small function which allows you to pass glob to generate entries hash object
https://github.com/aurimasniekis/webpack-glob-entries
entries-hash webpack-glob-entries
Last synced: 2 months ago
JSON representation
A small function which allows you to pass glob to generate entries hash object
- Host: GitHub
- URL: https://github.com/aurimasniekis/webpack-glob-entries
- Owner: aurimasniekis
- License: mit
- Created: 2015-10-06T10:09:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T14:33:16.000Z (about 6 years ago)
- Last Synced: 2024-10-30T04:49:14.906Z (3 months ago)
- Topics: entries-hash, webpack-glob-entries
- Language: JavaScript
- Size: 2.93 KB
- Stars: 27
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-glob-entries
A small function which allows you to pass glob to generate entries hash object## Instalation
```
npm install --save-dev webpack-glob-entries
```## Usage
```
var glob_entries = require('webpack-glob-entries')module.exports = {
entry: glob_entries('src/entries/**/*.js'),
output: {
filename: '[name].js'
}
};
```## Tests
npm test
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Lint and test your code.## Release History
* 1.0.0 Initial release