UNPKG

@zohodesk/client_build_tool

Version:

A CLI tool to build web applications and client libraries

18 lines (16 loc) 434 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.findInitialFileNames = findInitialFileNames; function findInitialFileNames(compilation) { const initialEntries = []; compilation.entrypoints.forEach(element => { element.chunks.forEach(chunk => { Array.from(chunk.files).forEach(filename => { initialEntries.push(filename); }); }); }); return initialEntries; }