An webpack entries gathering helper.
This helper allows you to collect webpack entries from custom directory.
How to use
Install package
npm i -D @tenogy/webpack-entries
Then import it and use it in webpack.config.js
const {getEntries} = require("@tenogy/webpack-entries");
const config = {
entry: getEntries("./src/app")
};