WXL
5 天以前 871522ed7e06fd9c62a87c178d7f5c88d7853a20
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
/*
    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");
const createSchemaValidation = require("./util/create-schema-validation");
 
/** @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 */
 
const PLUGIN_NAME = "ManifestPlugin";
 
const validate = createSchemaValidation(
    require("../schemas/plugins/ManifestPlugin.check"),
    () => require("../schemas/plugins/ManifestPlugin.json"),
    {
        name: "ManifestPlugin",
        baseDataPath: "options"
    }
);
 
/**
 * @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;
};
 
class ManifestPlugin {
    /**
     * @param {ManifestPluginOptions} options options
     */
    constructor(options) {
        validate(options);
 
        /** @type {ManifestPluginOptions & Required<Omit<ManifestPluginOptions,  "filter" | "generate">>} */
        this.options = {
            filename: "manifest.json",
            prefix: "[publicpath]",
            entrypoints: true,
            serialize: (manifest) => JSON.stringify(manifest, null, 2),
            ...options
        };
    }
 
    /**
     * Apply the plugin
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        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
                    );
 
                    /**
                     * @param {string | string[]} value value
                     * @returns {RegExp} regexp to remove hash
                     */
                    const createHashRegExp = (value) =>
                        new RegExp(
                            `(?:\\.${Array.isArray(value) ? `(${value.join("|")})` : value})(?=\\.)`,
                            "gi"
                        );
 
                    /**
                     * @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, "");
                    };
 
                    /**
                     * @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 (this.options.entrypoints) {
                        /** @type {ManifestObject["entrypoints"]} */
                        const entrypoints = {};
 
                        for (const [name, entrypoint] of compilation.entrypoints) {
                            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();
 
                    /**
                     * @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.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,
                        new RawSource(this.options.serialize(manifest)),
                        { manifest: true }
                    );
                }
            );
        });
    }
}
 
module.exports = ManifestPlugin;