https://github.com/superreal/webpack-glob-entries
Finds and returns entry point files in a custom folder
https://github.com/superreal/webpack-glob-entries
entrypoint glob webpack
Last synced: about 2 months ago
JSON representation
Finds and returns entry point files in a custom folder
- Host: GitHub
- URL: https://github.com/superreal/webpack-glob-entries
- Owner: superReal
- License: mit
- Created: 2017-03-08T08:37:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T09:53:31.000Z (over 7 years ago)
- Last Synced: 2025-09-05T11:41:33.702Z (9 months ago)
- Topics: entrypoint, glob, webpack
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-glob-entries
Finds and returns entry point files in a custom folder
## DEPRECATED
## Instalation
```
npm install --save-dev git+https://github.com/superReal/webpack-glob-entries.git
```
## Usage
```javascript
const globEntries = require( 'webpack-glob-entries' )
{
entry: globEntries( '/root/path/project', '/**/*.entry.js' ),
output: {
filename: '[name].js'
}
}
```
## Params
Parameter | Description | Required | Default
--------- | ----------- | ----------- | -------
`rootPath` | Root path of glob path | ✔️ |
`globPath` | Glob path for entry points | ✔️ |
`entryExt` | Extension of entry point files | | `.entry.js`