Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@tenogy/webpack-entries

bondarchukv1ISC1.0.0

An webpack entries gathering helper.

tenogy, webpack, entries

readme

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")
};