Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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