-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
56 lines (46 loc) · 1.45 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
'use strict';
var HtmlValidate = require('html-validate').HtmlValidate;
var c = require('ansi-colors');
var log = require('fancy-log');
var formatterFactory = require('html-validate').formatterFactory;
const text = formatterFactory("text");
function validateHtml (sourceFileHtml, filename) {
try {
var htmlvalidate = new HtmlValidate();
const report = htmlvalidate.validateSource({
/* markup to validate */
data: sourceFileHtml,
/* filename to put in report, content is not read */
filename: filename
});
if (!report.valid) {
/* errors log */
log(c.red(`File is not valid => ${report.results[0].filePath}`));
log(c.red(`==================>`));
log(c.white(`File\n${text(report.results)}`));
log(c.red(`<==================`));
}
} catch (error) {
log.error('WebpackHtmlValidate ERROR');
log.error(error);
}
}
class WebpackHtmlValidatePlugin {
constructor () {
this.REGEX_HTML = new RegExp(/\.html$/);
}
apply (compiler) {
compiler.hooks.emit.tapAsync('WebpackHtmlValidatePlugin', (compilation, callback) => {
var allFiles = compilation.assets;
for (var filename in allFiles) {
const isMatch = filename.match(this.REGEX_HTML);
if (isMatch) {
var sourceFileHtml = allFiles[filename].source();
validateHtml(sourceFileHtml, filename);
}
}
callback();
});
}
}
module.exports = WebpackHtmlValidatePlugin;