yjryu / UI_Layout star
File name
Commit message
Commit date
File name
Commit message
Commit date
yjryu 2024-01-10 08c2192 240110 류윤주 commit UNIX
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
"use strict";
const PrefetchDependency = require("./dependencies/PrefetchDependency");
/** @typedef {import("./Compiler")} Compiler */
class PrefetchPlugin {
    constructor(context, request) {
        if (request) {
            this.context = context;
            this.request = request;
        } else {
            this.context = null;
            this.request = context;
        }
    }
    /**
     * Apply the plugin
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        compiler.hooks.compilation.tap(
            "PrefetchPlugin",
            (compilation, { normalModuleFactory }) => {
                compilation.dependencyFactories.set(
                    PrefetchDependency,
                    normalModuleFactory
                );
            }
        );
        compiler.hooks.make.tapAsync("PrefetchPlugin", (compilation, callback) => {
            compilation.addModuleChain(
                this.context || compiler.context,
                new PrefetchDependency(this.request),
                err => {
                    callback(err);
                }
            );
        });
    }
}
module.exports = PrefetchPlugin;
X