1 | "use strict";
|
---|
2 | /**
|
---|
3 | * @license
|
---|
4 | * Copyright Google LLC All Rights Reserved.
|
---|
5 | *
|
---|
6 | * Use of this source code is governed by an MIT-style license that can be
|
---|
7 | * found in the LICENSE file at https://angular.io/license
|
---|
8 | */
|
---|
9 | var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
---|
10 | if (k2 === undefined) k2 = k;
|
---|
11 | Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
---|
12 | }) : (function(o, m, k, k2) {
|
---|
13 | if (k2 === undefined) k2 = k;
|
---|
14 | o[k2] = m[k];
|
---|
15 | }));
|
---|
16 | var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
---|
17 | Object.defineProperty(o, "default", { enumerable: true, value: v });
|
---|
18 | }) : function(o, v) {
|
---|
19 | o["default"] = v;
|
---|
20 | });
|
---|
21 | var __importStar = (this && this.__importStar) || function (mod) {
|
---|
22 | if (mod && mod.__esModule) return mod;
|
---|
23 | var result = {};
|
---|
24 | if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
---|
25 | __setModuleDefault(result, mod);
|
---|
26 | return result;
|
---|
27 | };
|
---|
28 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
29 | exports.getEmittedFiles = void 0;
|
---|
30 | const path = __importStar(require("path"));
|
---|
31 | function getEmittedFiles(compilation) {
|
---|
32 | const files = [];
|
---|
33 | // adds all chunks to the list of emitted files such as lazy loaded modules
|
---|
34 | for (const chunk of compilation.chunks) {
|
---|
35 | for (const file of chunk.files) {
|
---|
36 | files.push({
|
---|
37 | // The id is guaranteed to exist at this point in the compilation process
|
---|
38 | // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
---|
39 | id: chunk.id.toString(),
|
---|
40 | name: chunk.name,
|
---|
41 | file,
|
---|
42 | extension: path.extname(file),
|
---|
43 | initial: chunk.isOnlyInitial(),
|
---|
44 | });
|
---|
45 | }
|
---|
46 | }
|
---|
47 | // other all files
|
---|
48 | for (const file of Object.keys(compilation.assets)) {
|
---|
49 | files.push({ file, extension: path.extname(file), initial: false, asset: true });
|
---|
50 | }
|
---|
51 | // dedupe
|
---|
52 | return files.filter(({ file, name }, index) => files.findIndex((f) => f.file === file && (!name || name === f.name)) === index);
|
---|
53 | }
|
---|
54 | exports.getEmittedFiles = getEmittedFiles;
|
---|