-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathSetPublicPathPluginBase.ts
66 lines (56 loc) · 2.34 KB
/
SetPublicPathPluginBase.ts
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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { VersionDetection } from '@rushstack/webpack-plugin-utilities';
import { PackageJsonLookup, type IPackageJson } from '@rushstack/node-core-library';
import type webpack from 'webpack';
/**
* @public
*/
export abstract class SetPublicPathPluginBase implements webpack.WebpackPluginInstance {
private readonly _pluginName: string;
public constructor(pluginName: string) {
this._pluginName = pluginName;
}
public apply(compiler: webpack.Compiler): void {
if (!VersionDetection.isWebpack5(compiler)) {
const thisPackageJson: IPackageJson = PackageJsonLookup.loadOwnPackageJson(__dirname);
throw new Error(
`The ${this.constructor.name} plugin requires Webpack 5. Use major version 4 of ` +
`${thisPackageJson.name} for Webpack 4 support.`
);
}
const thisWebpack: typeof webpack = compiler.webpack;
const initialOutputPublicPathSetting: typeof compiler.options.output.publicPath =
compiler.options.output.publicPath;
compiler.hooks.thisCompilation.tap(this._pluginName, (compilation: webpack.Compilation) => {
if (initialOutputPublicPathSetting) {
compilation.warnings.push(
new compiler.webpack.WebpackError(
`The "output.publicPath" option is set in the Webpack configuration. The ${this.constructor.name} ` +
'plugin may produce unexpected results. It is recommended that the "output.publicPath" configuration option ' +
'be unset when using this plugin.'
)
);
} else {
compilation.hooks.runtimeRequirementInTree.for(thisWebpack.RuntimeGlobals.publicPath).intercept({
name: this._pluginName,
register: (tap) => {
if (tap.name === 'RuntimePlugin') {
// Disable the default public path runtime plugin
return {
...tap,
fn: () => {
/* noop */
}
};
} else {
return tap;
}
}
});
}
this._applyCompilation(thisWebpack, compilation);
});
}
protected abstract _applyCompilation(thisWebpack: typeof webpack, compilation: webpack.Compilation): void;
}