-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
26 lines (22 loc) · 897 Bytes
/
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
const isFunction = function (val) {
return typeof val === 'function'
}
const camelToHyphen = function (camelStr, hyphen) {
return camelStr.replace(/([^A-Z])([A-Z])/g, (match, p1, p2) => p1 + (hyphen || '-') + p2).toLowerCase()
}
const HtmlRewriteWebpackPlugin = function (options) {
Object.assign(this, options)
}
HtmlRewriteWebpackPlugin.prototype.apply = function (compiler) {
const self = this
compiler.plugin('compilation', compilation => {
['beforeHtmlGeneration', 'beforeHtmlProcessing', 'alterAssetTags', 'afterHtmlProcessing', 'afterEmit']
.forEach(event => {
compilation.plugin(`html-webpack-plugin-${camelToHyphen(event)}`, (htmlPluginData, callback) => {
isFunction(self[event]) && self[event](htmlPluginData)
isFunction(callback) && callback(null, htmlPluginData)
})
})
})
}
module.exports = HtmlRewriteWebpackPlugin