-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
56 lines (47 loc) · 2.2 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
const fs = require("fs");
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
/**
* Reads all the html files in a given directory and adds an HtmlWebpackPlugin for each one of them.
*/
class DynamicHtmlWebpackPlugin {
/**
* @param {{}} options - Config object.
* @param {String} options.dir - Directory where the html files are located.
* @param {Object.<String, String|String[]>} options.additionalChunks - Entry chunks that will be added to the compiled
* html file (chunk with the name of the template is included by default).
* @param {String|String[]} aditionalChunks.all - Chunks shared between all html files.
* @param {{}} options.commonOptions - Other HtmlWebpackPlugin options that wil be shared between all html files.
* @param {Boolean} options.addChunksMatchingPageName - If true, the entry chunk that shares names with an .html file
* will automatically be added to that file.
*/
constructor(options) {
this.dir = options.dir || "";
this.additionalChunks = options.additionalChunks || {};
this.commonOptions = options.commonOptions || {};
this.addChunksMatchingPageName = options.addChunksMatchingPageName == undefined ? true : options.addChunksMatchingPageName;
}
apply(compiler) {
this.index = compiler.options.plugins.indexOf(this);
const files = fs.readdirSync(this.dir).filter((file) => { return file.match(/\.html$/); });
for (const file of files) {
const fileName = file.replace(".html", "");
// The chunks that will be added to this file
let chunks = [];
if (this.addChunksMatchingPageName && compiler.options.entry[fileName]) chunks.push(fileName);
if (this.additionalChunks[fileName]) chunks = chunks.concat(this.additionalChunks[fileName]);
if (this.additionalChunks.all) chunks = chunks.concat(this.additionalChunks.all);
const optionsForFile = {
filename: file,
template: path.join(this.dir, file),
chunks: chunks
};
// After this plugin so it can load
compiler.options.plugins.splice(this.index + 1, 0,
// Overrides commonOptions with optionsForFile, if there's a conflict
new HtmlWebpackPlugin({...this.commonOptions, ...optionsForFile})
);
}
}
}
module.exports = DynamicHtmlWebpackPlugin;