WXL
3 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Haijie Xie @hai-x
*/
 
"use strict";
 
const { RawSource } = require("webpack-sources");
const Compilation = require("./Compilation");
const HotUpdateChunk = require("./HotUpdateChunk");
 
/** @typedef {import("./Compiler")} Compiler */
/** @typedef {import("./Chunk")} Chunk */
/** @typedef {import("./Chunk").ChunkName} ChunkName */
/** @typedef {import("./Chunk").ChunkId} ChunkId */
/** @typedef {import("./Compilation").Asset} Asset */
/** @typedef {import("./Compilation").AssetInfo} AssetInfo */
 
/** @typedef {import("../declarations/plugins/ManifestPlugin").ManifestPluginOptions} ManifestPluginOptions */
/** @typedef {import("../declarations/plugins/ManifestPlugin").ManifestObject} ManifestObject */
/** @typedef {import("../declarations/plugins/ManifestPlugin").ManifestEntrypoint} ManifestEntrypoint */
/** @typedef {import("../declarations/plugins/ManifestPlugin").ManifestItem} ManifestItem */
 
/** @typedef {(item: ManifestItem) => boolean} Filter */
/** @typedef {(manifest: ManifestObject) => ManifestObject} Generate */
/** @typedef {(manifest: ManifestObject) => string} Serialize */
 
const PLUGIN_NAME = "ManifestPlugin";
 
/**
 * Returns extname.
 * @param {string} filename filename
 * @returns {string} extname
 */
const extname = (filename) => {
    const replaced = filename.replace(/\?.*/, "");
    const split = replaced.split(".");
    const last = split.pop();
    if (!last) return "";
    return last && /^(?:gz|br|map)$/i.test(last)
        ? `${split.pop()}.${last}`
        : last;
};
 
const DEFAULT_PREFIX = "[publicpath]";
const DEFAULT_FILENAME = "manifest.json";
 
class ManifestPlugin {
    /**
     * Creates an instance of ManifestPlugin.
     * @param {ManifestPluginOptions} options options
     */
    constructor(options = {}) {
        /** @type {ManifestPluginOptions} */
        this.options = options;
    }
 
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        compiler.hooks.validate.tap(PLUGIN_NAME, () => {
            compiler.validate(
                () => require("../schemas/plugins/ManifestPlugin.json"),
                this.options,
                {
                    name: "ManifestPlugin",
                    baseDataPath: "options"
                },
                (options) => require("../schemas/plugins/ManifestPlugin.check")(options)
            );
        });
 
        const entrypoints =
            this.options.entrypoints !== undefined ? this.options.entrypoints : true;
        const serialize =
            this.options.serialize ||
            ((manifest) => JSON.stringify(manifest, null, 2));
 
        compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {
            compilation.hooks.processAssets.tap(
                {
                    name: PLUGIN_NAME,
                    stage: Compilation.PROCESS_ASSETS_STAGE_SUMMARIZE
                },
                () => {
                    const hashDigestLength = compilation.outputOptions.hashDigestLength;
                    const publicPath = compilation.getPath(
                        compilation.outputOptions.publicPath
                    );
 
                    /**
                     * Creates a hash reg exp.
                     * @param {string | string[]} value value
                     * @returns {RegExp} regexp to remove hash
                     */
                    const createHashRegExp = (value) =>
                        new RegExp(
                            `(?:\\.${Array.isArray(value) ? `(${value.join("|")})` : value})(?=\\.)`,
                            "gi"
                        );
 
                    /**
                     * Removes the provided name from the manifest plugin.
                     * @param {string} name name
                     * @param {AssetInfo | null} info asset info
                     * @returns {string} hash removed name
                     */
                    const removeHash = (name, info) => {
                        // Handles hashes that match configured `hashDigestLength`
                        // i.e. index.XXXX.html -> index.html (html-webpack-plugin)
                        if (hashDigestLength <= 0) return name;
                        const reg = createHashRegExp(`[a-f0-9]{${hashDigestLength},32}`);
                        return name.replace(reg, "");
                    };
 
                    /**
                     * Returns chunk name or chunk id.
                     * @param {Chunk} chunk chunk
                     * @returns {ChunkName | ChunkId} chunk name or chunk id
                     */
                    const getName = (chunk) => {
                        if (chunk.name) return chunk.name;
 
                        return chunk.id;
                    };
 
                    /** @type {ManifestObject} */
                    let manifest = {};
 
                    if (entrypoints) {
                        /** @type {ManifestObject["entrypoints"]} */
                        const entrypoints = {};
 
                        for (const [name, entrypoint] of compilation.entrypoints) {
                            /** @type {string[]} */
                            const imports = [];
 
                            for (const chunk of entrypoint.chunks) {
                                for (const file of chunk.files) {
                                    const name = getName(chunk);
 
                                    imports.push(name ? `${name}.${extname(file)}` : file);
                                }
                            }
 
                            /** @type {ManifestEntrypoint} */
                            const item = { imports };
                            const parents = entrypoint
                                .getParents()
                                .map((item) => /** @type {string} */ (item.name));
 
                            if (parents.length > 0) {
                                item.parents = parents;
                            }
 
                            entrypoints[name] = item;
                        }
 
                        manifest.entrypoints = entrypoints;
                    }
 
                    /** @type {ManifestObject["assets"]} */
                    const assets = {};
 
                    /** @type {Set<string>} */
                    const added = new Set();
 
                    /**
                     * Processes the provided file.
                     * @param {string} file file
                     * @param {string=} usedName usedName
                     * @returns {void}
                     */
                    const handleFile = (file, usedName) => {
                        if (added.has(file)) return;
                        added.add(file);
 
                        const asset = compilation.getAsset(file);
                        if (!asset) return;
                        const sourceFilename = asset.info.sourceFilename;
                        const name =
                            usedName ||
                            sourceFilename ||
                            // Fallback for unofficial plugins, just remove hash from filename
                            removeHash(file, asset.info);
 
                        const prefix = (this.options.prefix || DEFAULT_PREFIX).replace(
                            /\[publicpath\]/gi,
                            () => (publicPath === "auto" ? "/" : publicPath)
                        );
                        /** @type {ManifestItem} */
                        const item = { file: prefix + file };
 
                        if (sourceFilename) {
                            item.src = sourceFilename;
                        }
 
                        if (this.options.filter) {
                            const needKeep = this.options.filter(item);
 
                            if (!needKeep) {
                                return;
                            }
                        }
 
                        assets[name] = item;
                    };
 
                    for (const chunk of compilation.chunks) {
                        if (chunk instanceof HotUpdateChunk) continue;
 
                        for (const auxiliaryFile of chunk.auxiliaryFiles) {
                            handleFile(auxiliaryFile);
                        }
 
                        const name = getName(chunk);
 
                        for (const file of chunk.files) {
                            handleFile(file, name ? `${name}.${extname(file)}` : file);
                        }
                    }
 
                    for (const asset of compilation.getAssets()) {
                        if (asset.info.hotModuleReplacement) {
                            continue;
                        }
 
                        handleFile(asset.name);
                    }
 
                    manifest.assets = assets;
 
                    if (this.options.generate) {
                        manifest = this.options.generate(manifest);
                    }
 
                    compilation.emitAsset(
                        this.options.filename || DEFAULT_FILENAME,
                        new RawSource(serialize(manifest)),
                        { manifest: true }
                    );
                }
            );
        });
    }
}
 
module.exports = ManifestPlugin;