UNPKG

@angular-devkit/build-angular

Version:
33 lines (32 loc) 1.23 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateEntryPoints = void 0; const utils_1 = require("../models/webpack-configs/utils"); function generateEntryPoints(appConfig) { // Add all styles/scripts, except lazy-loaded ones. const extraEntryPoints = (extraEntryPoints, defaultBundleName) => { const entryPoints = utils_1.normalizeExtraEntryPoints(extraEntryPoints, defaultBundleName) .filter(entry => entry.inject) .map(entry => entry.bundleName); // remove duplicates return [...new Set(entryPoints)]; }; const entryPoints = [ 'runtime', 'polyfills-es5', 'polyfills', 'sw-register', ...extraEntryPoints(appConfig.styles, 'styles'), ...extraEntryPoints(appConfig.scripts, 'scripts'), 'vendor', 'main', ]; const duplicates = [ ...new Set(entryPoints.filter(x => entryPoints.indexOf(x) !== entryPoints.lastIndexOf(x))), ]; if (duplicates.length > 0) { throw new Error(`Multiple bundles have been named the same: '${duplicates.join(`', '`)}'.`); } return entryPoints; } exports.generateEntryPoints = generateEntryPoints;