-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
index.js
1594 lines (1460 loc) · 49.4 KB
/
index.js
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// @ts-check
"use strict";
const promisify = require("util").promisify;
const vm = require("vm");
const fs = require("fs");
const _uniq = require("lodash/uniq");
const path = require("path");
const { CachedChildCompilation } = require("./lib/cached-child-compiler");
const {
createHtmlTagObject,
htmlTagObjectToString,
HtmlTagArray,
} = require("./lib/html-tags");
const prettyError = require("./lib/errors.js");
const chunkSorter = require("./lib/chunksorter.js");
const { AsyncSeriesWaterfallHook } = require("tapable");
/** @typedef {import("./typings").HtmlTagObject} HtmlTagObject */
/** @typedef {import("./typings").Options} HtmlWebpackOptions */
/** @typedef {import("./typings").ProcessedOptions} ProcessedHtmlWebpackOptions */
/** @typedef {import("./typings").TemplateParameter} TemplateParameter */
/** @typedef {import("webpack").Compiler} Compiler */
/** @typedef {import("webpack").Compilation} Compilation */
/** @typedef {Required<Compilation["outputOptions"]["publicPath"]>} PublicPath */
/** @typedef {ReturnType<Compiler["getInfrastructureLogger"]>} Logger */
/** @typedef {Compilation["entrypoints"] extends Map<string, infer I> ? I : never} Entrypoint */
/** @typedef {Array<{ name: string, source: import('webpack').sources.Source, info?: import('webpack').AssetInfo }>} PreviousEmittedAssets */
/** @typedef {{ publicPath: string, js: Array<string>, css: Array<string>, manifest?: string, favicon?: string }} AssetsInformationByGroups */
/** @typedef {import("./typings").Hooks} HtmlWebpackPluginHooks */
/**
* @type {WeakMap<Compilation, HtmlWebpackPluginHooks>}}
*/
const compilationHooksMap = new WeakMap();
class HtmlWebpackPlugin {
// The following is the API definition for all available hooks
// For the TypeScript definition, see the Hooks type in typings.d.ts
/**
beforeAssetTagGeneration:
AsyncSeriesWaterfallHook<{
assets: {
publicPath: string,
js: Array<string>,
css: Array<string>,
favicon?: string | undefined,
manifest?: string | undefined
},
outputName: string,
plugin: HtmlWebpackPlugin
}>,
alterAssetTags:
AsyncSeriesWaterfallHook<{
assetTags: {
scripts: Array<HtmlTagObject>,
styles: Array<HtmlTagObject>,
meta: Array<HtmlTagObject>,
},
publicPath: string,
outputName: string,
plugin: HtmlWebpackPlugin
}>,
alterAssetTagGroups:
AsyncSeriesWaterfallHook<{
headTags: Array<HtmlTagObject | HtmlTagObject>,
bodyTags: Array<HtmlTagObject | HtmlTagObject>,
publicPath: string,
outputName: string,
plugin: HtmlWebpackPlugin
}>,
afterTemplateExecution:
AsyncSeriesWaterfallHook<{
html: string,
headTags: Array<HtmlTagObject | HtmlTagObject>,
bodyTags: Array<HtmlTagObject | HtmlTagObject>,
outputName: string,
plugin: HtmlWebpackPlugin,
}>,
beforeEmit:
AsyncSeriesWaterfallHook<{
html: string,
outputName: string,
plugin: HtmlWebpackPlugin,
}>,
afterEmit:
AsyncSeriesWaterfallHook<{
outputName: string,
plugin: HtmlWebpackPlugin
}>
*/
/**
* Returns all public hooks of the html webpack plugin for the given compilation
*
* @param {Compilation} compilation
* @returns {HtmlWebpackPluginHooks}
*/
static getCompilationHooks(compilation) {
let hooks = compilationHooksMap.get(compilation);
if (!hooks) {
hooks = {
beforeAssetTagGeneration: new AsyncSeriesWaterfallHook(["pluginArgs"]),
alterAssetTags: new AsyncSeriesWaterfallHook(["pluginArgs"]),
alterAssetTagGroups: new AsyncSeriesWaterfallHook(["pluginArgs"]),
afterTemplateExecution: new AsyncSeriesWaterfallHook(["pluginArgs"]),
beforeEmit: new AsyncSeriesWaterfallHook(["pluginArgs"]),
afterEmit: new AsyncSeriesWaterfallHook(["pluginArgs"]),
};
compilationHooksMap.set(compilation, hooks);
}
return hooks;
}
/**
* @param {HtmlWebpackOptions} [options]
*/
constructor(options) {
/** @type {HtmlWebpackOptions} */
// TODO remove me in the next major release
this.userOptions = options || {};
this.version = HtmlWebpackPlugin.version;
// Default options
/** @type {ProcessedHtmlWebpackOptions} */
const defaultOptions = {
template: "auto",
templateContent: false,
templateParameters: templateParametersGenerator,
filename: "index.html",
publicPath:
this.userOptions.publicPath === undefined
? "auto"
: this.userOptions.publicPath,
hash: false,
inject: this.userOptions.scriptLoading === "blocking" ? "body" : "head",
scriptLoading: "defer",
compile: true,
favicon: false,
minify: "auto",
cache: true,
showErrors: true,
chunks: "all",
excludeChunks: [],
chunksSortMode: "auto",
meta: {},
base: false,
title: "Webpack App",
xhtml: false,
};
/** @type {ProcessedHtmlWebpackOptions} */
this.options = Object.assign(defaultOptions, this.userOptions);
}
/**
*
* @param {Compiler} compiler
* @returns {void}
*/
apply(compiler) {
this.logger = compiler.getInfrastructureLogger("HtmlWebpackPlugin");
const options = this.options;
options.template = this.getTemplatePath(
this.options.template,
compiler.context,
);
// Assert correct option spelling
if (
options.scriptLoading !== "defer" &&
options.scriptLoading !== "blocking" &&
options.scriptLoading !== "module" &&
options.scriptLoading !== "systemjs-module"
) {
/** @type {Logger} */
(this.logger).error(
'The "scriptLoading" option need to be set to "defer", "blocking" or "module" or "systemjs-module"',
);
}
if (
options.inject !== true &&
options.inject !== false &&
options.inject !== "head" &&
options.inject !== "body"
) {
/** @type {Logger} */
(this.logger).error(
'The `inject` option needs to be set to true, false, "head" or "body',
);
}
if (
this.options.templateParameters !== false &&
typeof this.options.templateParameters !== "function" &&
typeof this.options.templateParameters !== "object"
) {
/** @type {Logger} */
(this.logger).error(
"The `templateParameters` has to be either a function or an object or false",
);
}
// Default metaOptions if no template is provided
if (
!this.userOptions.template &&
options.templateContent === false &&
options.meta
) {
options.meta = Object.assign(
{},
options.meta,
{
// TODO remove in the next major release
// From https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
viewport: "width=device-width, initial-scale=1",
},
this.userOptions.meta,
);
}
// entryName to fileName conversion function
const userOptionFilename =
this.userOptions.filename || this.options.filename;
const filenameFunction =
typeof userOptionFilename === "function"
? userOptionFilename
: // Replace '[name]' with entry name
(entryName) => userOptionFilename.replace(/\[name\]/g, entryName);
/** output filenames for the given entry names */
const entryNames = Object.keys(compiler.options.entry);
const outputFileNames = new Set(
(entryNames.length ? entryNames : ["main"]).map(filenameFunction),
);
// Hook all options into the webpack compiler
outputFileNames.forEach((outputFileName) => {
// Instance variables to keep caching information for multiple builds
const assetJson = { value: undefined };
/**
* store the previous generated asset to emit them even if the content did not change
* to support watch mode for third party plugins like the clean-webpack-plugin or the compression plugin
* @type {PreviousEmittedAssets}
*/
const previousEmittedAssets = [];
// Inject child compiler plugin
const childCompilerPlugin = new CachedChildCompilation(compiler);
if (!this.options.templateContent) {
childCompilerPlugin.addEntry(this.options.template);
}
// convert absolute filename into relative so that webpack can
// generate it at correct location
let filename = outputFileName;
if (path.resolve(filename) === path.normalize(filename)) {
const outputPath =
/** @type {string} - Once initialized the path is always a string */ (
compiler.options.output.path
);
filename = path.relative(outputPath, filename);
}
compiler.hooks.thisCompilation.tap(
"HtmlWebpackPlugin",
/**
* Hook into the webpack compilation
* @param {Compilation} compilation
*/
(compilation) => {
compilation.hooks.processAssets.tapAsync(
{
name: "HtmlWebpackPlugin",
stage:
/**
* Generate the html after minification and dev tooling is done
*/
compiler.webpack.Compilation
.PROCESS_ASSETS_STAGE_OPTIMIZE_INLINE,
},
/**
* Hook into the process assets hook
* @param {any} _
* @param {(err?: Error) => void} callback
*/
(_, callback) => {
this.generateHTML(
compiler,
compilation,
filename,
childCompilerPlugin,
previousEmittedAssets,
assetJson,
callback,
);
},
);
},
);
});
}
/**
* Helper to return the absolute template path with a fallback loader
*
* @private
* @param {string} template The path to the template e.g. './index.html'
* @param {string} context The webpack base resolution path for relative paths e.g. process.cwd()
*/
getTemplatePath(template, context) {
if (template === "auto") {
template = path.resolve(context, "src/index.ejs");
if (!fs.existsSync(template)) {
template = path.join(__dirname, "default_index.ejs");
}
}
// If the template doesn't use a loader use the lodash template loader
if (template.indexOf("!") === -1) {
template =
require.resolve("./lib/loader.js") +
"!" +
path.resolve(context, template);
}
// Resolve template path
return template.replace(
/([!])([^/\\][^!?]+|[^/\\!?])($|\?[^!?\n]+$)/,
(match, prefix, filepath, postfix) =>
prefix + path.resolve(filepath) + postfix,
);
}
/**
* Return all chunks from the compilation result which match the exclude and include filters
*
* @private
* @param {any} chunks
* @param {string[]|'all'} includedChunks
* @param {string[]} excludedChunks
*/
filterEntryChunks(chunks, includedChunks, excludedChunks) {
return chunks.filter((chunkName) => {
// Skip if the chunks should be filtered and the given chunk was not added explicity
if (
Array.isArray(includedChunks) &&
includedChunks.indexOf(chunkName) === -1
) {
return false;
}
// Skip if the chunks should be filtered and the given chunk was excluded explicity
if (
Array.isArray(excludedChunks) &&
excludedChunks.indexOf(chunkName) !== -1
) {
return false;
}
// Add otherwise
return true;
});
}
/**
* Helper to sort chunks
*
* @private
* @param {string[]} entryNames
* @param {string|((entryNameA: string, entryNameB: string) => number)} sortMode
* @param {Compilation} compilation
*/
sortEntryChunks(entryNames, sortMode, compilation) {
// Custom function
if (typeof sortMode === "function") {
return entryNames.sort(sortMode);
}
// Check if the given sort mode is a valid chunkSorter sort mode
if (typeof chunkSorter[sortMode] !== "undefined") {
return chunkSorter[sortMode](entryNames, compilation, this.options);
}
throw new Error('"' + sortMode + '" is not a valid chunk sort mode');
}
/**
* Encode each path component using `encodeURIComponent` as files can contain characters
* which needs special encoding in URLs like `+ `.
*
* Valid filesystem characters which need to be encoded for urls:
*
* # pound, % percent, & ampersand, { left curly bracket, } right curly bracket,
* \ back slash, < left angle bracket, > right angle bracket, * asterisk, ? question mark,
* blank spaces, $ dollar sign, ! exclamation point, ' single quotes, " double quotes,
* : colon, @ at sign, + plus sign, ` backtick, | pipe, = equal sign
*
* However the query string must not be encoded:
*
* fo:demonstration-path/very fancy+name.js?path=/home?value=abc&value=def#zzz
* ^ ^ ^ ^ ^ ^ ^ ^^ ^ ^ ^ ^ ^
* | | | | | | | || | | | | |
* encoded | | encoded | | || | | | | |
* ignored ignored ignored ignored ignored
*
* @private
* @param {string} filePath
*/
urlencodePath(filePath) {
// People use the filepath in quite unexpected ways.
// Try to extract the first querystring of the url:
//
// some+path/demo.html?value=abc?def
//
const queryStringStart = filePath.indexOf("?");
const urlPath =
queryStringStart === -1 ? filePath : filePath.substr(0, queryStringStart);
const queryString = filePath.substr(urlPath.length);
// Encode all parts except '/' which are not part of the querystring:
const encodedUrlPath = urlPath.split("/").map(encodeURIComponent).join("/");
return encodedUrlPath + queryString;
}
/**
* Appends a cache busting hash to the query string of the url
* E.g. http://localhost:8080/ -> http://localhost:8080/?50c9096ba6183fd728eeb065a26ec175
*
* @private
* @param {string | undefined} url
* @param {string} hash
*/
appendHash(url, hash) {
if (!url) {
return url;
}
return url + (url.indexOf("?") === -1 ? "?" : "&") + hash;
}
/**
* Generate the relative or absolute base url to reference images, css, and javascript files
* from within the html file - the publicPath
*
* @private
* @param {Compilation} compilation
* @param {string} filename
* @param {string | 'auto'} customPublicPath
* @returns {string}
*/
getPublicPath(compilation, filename, customPublicPath) {
/**
* @type {string} the configured public path to the asset root
* if a path publicPath is set in the current webpack config use it otherwise
* fallback to a relative path
*/
const webpackPublicPath = compilation.getAssetPath(
/** @type {NonNullable<Compilation["outputOptions"]["publicPath"]>} */ (
compilation.outputOptions.publicPath
),
{ hash: compilation.hash },
);
// Webpack 5 introduced "auto" as default value
const isPublicPathDefined = webpackPublicPath !== "auto";
let publicPath =
// If the html-webpack-plugin options contain a custom public path unset it
customPublicPath !== "auto"
? customPublicPath
: isPublicPathDefined
? // If a hard coded public path exists use it
webpackPublicPath
: // If no public path was set get a relative url path
path
.relative(
path.resolve(
/** @type {string} */ (compilation.options.output.path),
path.dirname(filename),
),
/** @type {string} */ (compilation.options.output.path),
)
.split(path.sep)
.join("/");
if (publicPath.length && publicPath.substr(-1, 1) !== "/") {
publicPath += "/";
}
return publicPath;
}
/**
* The getAssetsForHTML extracts the asset information of a webpack compilation for all given entry names.
*
* @private
* @param {Compilation} compilation
* @param {string} outputName
* @param {string[]} entryNames
* @returns {AssetsInformationByGroups}
*/
getAssetsInformationByGroups(compilation, outputName, entryNames) {
/** The public path used inside the html file */
const publicPath = this.getPublicPath(
compilation,
outputName,
this.options.publicPath,
);
/**
* @type {AssetsInformationByGroups}
*/
const assets = {
// The public path
publicPath,
// Will contain all js and mjs files
js: [],
// Will contain all css files
css: [],
// Will contain the html5 appcache manifest files if it exists
manifest: Object.keys(compilation.assets).find(
(assetFile) => path.extname(assetFile) === ".appcache",
),
// Favicon
favicon: undefined,
};
// Append a hash for cache busting
if (this.options.hash && assets.manifest) {
assets.manifest = this.appendHash(
assets.manifest,
/** @type {string} */ (compilation.hash),
);
}
// Extract paths to .js, .mjs and .css files from the current compilation
const entryPointPublicPathMap = {};
const extensionRegexp = /\.(css|js|mjs)(\?|$)/;
for (let i = 0; i < entryNames.length; i++) {
const entryName = entryNames[i];
/** entryPointUnfilteredFiles - also includes hot module update files */
const entryPointUnfilteredFiles = /** @type {Entrypoint} */ (
compilation.entrypoints.get(entryName)
).getFiles();
const entryPointFiles = entryPointUnfilteredFiles.filter((chunkFile) => {
const asset = compilation.getAsset(chunkFile);
if (!asset) {
return true;
}
// Prevent hot-module files from being included:
const assetMetaInformation = asset.info || {};
return !(
assetMetaInformation.hotModuleReplacement ||
assetMetaInformation.development
);
});
// Prepend the publicPath and append the hash depending on the
// webpack.output.publicPath and hashOptions
// E.g. bundle.js -> /bundle.js?hash
const entryPointPublicPaths = entryPointFiles.map((chunkFile) => {
const entryPointPublicPath = publicPath + this.urlencodePath(chunkFile);
return this.options.hash
? this.appendHash(
entryPointPublicPath,
/** @type {string} */ (compilation.hash),
)
: entryPointPublicPath;
});
entryPointPublicPaths.forEach((entryPointPublicPath) => {
const extMatch = extensionRegexp.exec(
/** @type {string} */ (entryPointPublicPath),
);
// Skip if the public path is not a .css, .mjs or .js file
if (!extMatch) {
return;
}
// Skip if this file is already known
// (e.g. because of common chunk optimizations)
if (entryPointPublicPathMap[entryPointPublicPath]) {
return;
}
entryPointPublicPathMap[entryPointPublicPath] = true;
// ext will contain .js or .css, because .mjs recognizes as .js
const ext = extMatch[1] === "mjs" ? "js" : extMatch[1];
assets[ext].push(entryPointPublicPath);
});
}
return assets;
}
/**
* Once webpack is done with compiling the template into a NodeJS code this function
* evaluates it to generate the html result
*
* The evaluateCompilationResult is only a class function to allow spying during testing.
* Please change that in a further refactoring
*
* @param {string} source
* @param {string} publicPath
* @param {string} templateFilename
* @returns {Promise<string | (() => string | Promise<string>)>}
*/
evaluateCompilationResult(source, publicPath, templateFilename) {
if (!source) {
return Promise.reject(
new Error("The child compilation didn't provide a result"),
);
}
// The LibraryTemplatePlugin stores the template result in a local variable.
// By adding it to the end the value gets extracted during evaluation
if (source.indexOf("HTML_WEBPACK_PLUGIN_RESULT") >= 0) {
source += ";\nHTML_WEBPACK_PLUGIN_RESULT";
}
const templateWithoutLoaders = templateFilename
.replace(/^.+!/, "")
.replace(/\?.+$/, "");
const vmContext = vm.createContext({
...global,
HTML_WEBPACK_PLUGIN: true,
require: require,
htmlWebpackPluginPublicPath: publicPath,
__filename: templateWithoutLoaders,
__dirname: path.dirname(templateWithoutLoaders),
AbortController: global.AbortController,
AbortSignal: global.AbortSignal,
Blob: global.Blob,
Buffer: global.Buffer,
ByteLengthQueuingStrategy: global.ByteLengthQueuingStrategy,
BroadcastChannel: global.BroadcastChannel,
CompressionStream: global.CompressionStream,
CountQueuingStrategy: global.CountQueuingStrategy,
Crypto: global.Crypto,
CryptoKey: global.CryptoKey,
CustomEvent: global.CustomEvent,
DecompressionStream: global.DecompressionStream,
Event: global.Event,
EventTarget: global.EventTarget,
File: global.File,
FormData: global.FormData,
Headers: global.Headers,
MessageChannel: global.MessageChannel,
MessageEvent: global.MessageEvent,
MessagePort: global.MessagePort,
PerformanceEntry: global.PerformanceEntry,
PerformanceMark: global.PerformanceMark,
PerformanceMeasure: global.PerformanceMeasure,
PerformanceObserver: global.PerformanceObserver,
PerformanceObserverEntryList: global.PerformanceObserverEntryList,
PerformanceResourceTiming: global.PerformanceResourceTiming,
ReadableByteStreamController: global.ReadableByteStreamController,
ReadableStream: global.ReadableStream,
ReadableStreamBYOBReader: global.ReadableStreamBYOBReader,
ReadableStreamBYOBRequest: global.ReadableStreamBYOBRequest,
ReadableStreamDefaultController: global.ReadableStreamDefaultController,
ReadableStreamDefaultReader: global.ReadableStreamDefaultReader,
Response: global.Response,
Request: global.Request,
SubtleCrypto: global.SubtleCrypto,
DOMException: global.DOMException,
TextDecoder: global.TextDecoder,
TextDecoderStream: global.TextDecoderStream,
TextEncoder: global.TextEncoder,
TextEncoderStream: global.TextEncoderStream,
TransformStream: global.TransformStream,
TransformStreamDefaultController: global.TransformStreamDefaultController,
URL: global.URL,
URLSearchParams: global.URLSearchParams,
WebAssembly: global.WebAssembly,
WritableStream: global.WritableStream,
WritableStreamDefaultController: global.WritableStreamDefaultController,
WritableStreamDefaultWriter: global.WritableStreamDefaultWriter,
});
const vmScript = new vm.Script(source, {
filename: templateWithoutLoaders,
});
// Evaluate code and cast to string
let newSource;
try {
newSource = vmScript.runInContext(vmContext);
} catch (e) {
return Promise.reject(e);
}
if (
typeof newSource === "object" &&
newSource.__esModule &&
newSource.default !== undefined
) {
newSource = newSource.default;
}
return typeof newSource === "string" || typeof newSource === "function"
? Promise.resolve(newSource)
: Promise.reject(
new Error(
'The loader "' + templateWithoutLoaders + "\" didn't return html.",
),
);
}
/**
* Add toString methods for easier rendering inside the template
*
* @private
* @param {Array<HtmlTagObject>} assetTagGroup
* @returns {Array<HtmlTagObject>}
*/
prepareAssetTagGroupForRendering(assetTagGroup) {
const xhtml = this.options.xhtml;
return HtmlTagArray.from(
assetTagGroup.map((assetTag) => {
const copiedAssetTag = Object.assign({}, assetTag);
copiedAssetTag.toString = function () {
return htmlTagObjectToString(this, xhtml);
};
return copiedAssetTag;
}),
);
}
/**
* Generate the template parameters for the template function
*
* @private
* @param {Compilation} compilation
* @param {AssetsInformationByGroups} assetsInformationByGroups
* @param {{
headTags: HtmlTagObject[],
bodyTags: HtmlTagObject[]
}} assetTags
* @returns {Promise<{[key: any]: any}>}
*/
getTemplateParameters(compilation, assetsInformationByGroups, assetTags) {
const templateParameters = this.options.templateParameters;
if (templateParameters === false) {
return Promise.resolve({});
}
if (
typeof templateParameters !== "function" &&
typeof templateParameters !== "object"
) {
throw new Error(
"templateParameters has to be either a function or an object",
);
}
const templateParameterFunction =
typeof templateParameters === "function"
? // A custom function can overwrite the entire template parameter preparation
templateParameters
: // If the template parameters is an object merge it with the default values
(compilation, assetsInformationByGroups, assetTags, options) =>
Object.assign(
{},
templateParametersGenerator(
compilation,
assetsInformationByGroups,
assetTags,
options,
),
templateParameters,
);
const preparedAssetTags = {
headTags: this.prepareAssetTagGroupForRendering(assetTags.headTags),
bodyTags: this.prepareAssetTagGroupForRendering(assetTags.bodyTags),
};
return Promise.resolve().then(() =>
templateParameterFunction(
compilation,
assetsInformationByGroups,
preparedAssetTags,
this.options,
),
);
}
/**
* This function renders the actual html by executing the template function
*
* @private
* @param {(templateParameters) => string | Promise<string>} templateFunction
* @param {AssetsInformationByGroups} assetsInformationByGroups
* @param {{
headTags: HtmlTagObject[],
bodyTags: HtmlTagObject[]
}} assetTags
* @param {Compilation} compilation
* @returns Promise<string>
*/
executeTemplate(
templateFunction,
assetsInformationByGroups,
assetTags,
compilation,
) {
// Template processing
const templateParamsPromise = this.getTemplateParameters(
compilation,
assetsInformationByGroups,
assetTags,
);
return templateParamsPromise.then((templateParams) => {
try {
// If html is a promise return the promise
// If html is a string turn it into a promise
return templateFunction(templateParams);
} catch (e) {
// @ts-ignore
compilation.errors.push(new Error("Template execution failed: " + e));
return Promise.reject(e);
}
});
}
/**
* Html Post processing
*
* @private
* @param {Compiler} compiler The compiler instance
* @param {any} originalHtml The input html
* @param {AssetsInformationByGroups} assetsInformationByGroups
* @param {{headTags: HtmlTagObject[], bodyTags: HtmlTagObject[]}} assetTags The asset tags to inject
* @returns {Promise<string>}
*/
postProcessHtml(
compiler,
originalHtml,
assetsInformationByGroups,
assetTags,
) {
let html = originalHtml;
if (typeof html !== "string") {
return Promise.reject(
new Error(
"Expected html to be a string but got " + JSON.stringify(html),
),
);
}
if (this.options.inject) {
const htmlRegExp = /(<html[^>]*>)/i;
const headRegExp = /(<\/head\s*>)/i;
const bodyRegExp = /(<\/body\s*>)/i;
const metaViewportRegExp = /<meta[^>]+name=["']viewport["'][^>]*>/i;
const body = assetTags.bodyTags.map((assetTagObject) =>
htmlTagObjectToString(assetTagObject, this.options.xhtml),
);
const head = assetTags.headTags
.filter((item) => {
if (
item.tagName === "meta" &&
item.attributes &&
item.attributes.name === "viewport" &&
metaViewportRegExp.test(html)
) {
return false;
}
return true;
})
.map((assetTagObject) =>
htmlTagObjectToString(assetTagObject, this.options.xhtml),
);
if (body.length) {
if (bodyRegExp.test(html)) {
// Append assets to body element
html = html.replace(bodyRegExp, (match) => body.join("") + match);
} else {
// Append scripts to the end of the file if no <body> element exists:
html += body.join("");
}
}
if (head.length) {
// Create a head tag if none exists
if (!headRegExp.test(html)) {
if (!htmlRegExp.test(html)) {
html = "<head></head>" + html;
} else {
html = html.replace(htmlRegExp, (match) => match + "<head></head>");
}
}
// Append assets to head element
html = html.replace(headRegExp, (match) => head.join("") + match);
}
// Inject manifest into the opening html tag
if (assetsInformationByGroups.manifest) {
html = html.replace(/(<html[^>]*)(>)/i, (match, start, end) => {
// Append the manifest only if no manifest was specified
if (/\smanifest\s*=/.test(match)) {
return match;
}
return (
start +
' manifest="' +
assetsInformationByGroups.manifest +
'"' +
end
);
});
}
}
// TODO avoid this logic and use https://github.com/webpack-contrib/html-minimizer-webpack-plugin under the hood in the next major version
// Check if webpack is running in production mode
// @see https://github.com/webpack/webpack/blob/3366421f1784c449f415cda5930a8e445086f688/lib/WebpackOptionsDefaulter.js#L12-L14
const isProductionLikeMode =
compiler.options.mode === "production" || !compiler.options.mode;
const needMinify =
this.options.minify === true ||
typeof this.options.minify === "object" ||
(this.options.minify === "auto" && isProductionLikeMode);
if (!needMinify) {
return Promise.resolve(html);
}
const minifyOptions =
typeof this.options.minify === "object"
? this.options.minify
: {
// https://www.npmjs.com/package/html-minifier-terser#options-quick-reference
collapseWhitespace: true,
keepClosingSlash: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true,
};
try {
html = require("html-minifier-terser").minify(html, minifyOptions);
} catch (e) {
const isParseError = String(e.message).indexOf("Parse Error") === 0;
if (isParseError) {
e.message =
"html-webpack-plugin could not minify the generated output.\n" +
"In production mode the html minification is enabled by default.\n" +
"If you are not generating a valid html output please disable it manually.\n" +
"You can do so by adding the following setting to your HtmlWebpackPlugin config:\n|\n|" +
" minify: false\n|\n" +
"See https://github.com/jantimon/html-webpack-plugin#options for details.\n\n" +
"For parser dedicated bugs please create an issue here:\n" +
"https://danielruf.github.io/html-minifier-terser/" +
"\n" +
e.message;
}
return Promise.reject(e);
}
return Promise.resolve(html);
}
/**
* Helper to return a sorted unique array of all asset files out of the asset object
* @private
*/
getAssetFiles(assets) {
const files = _uniq(
Object.keys(assets)
.filter((assetType) => assetType !== "chunks" && assets[assetType])
.reduce((files, assetType) => files.concat(assets[assetType]), []),
);
files.sort();
return files;
}
/**
* Converts a favicon file from disk to a webpack resource and returns the url to the resource