-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
index.js
41 lines (37 loc) · 1012 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'use strict';
const PluginError = require('plugin-error');
const htmlmin = require('html-minifier');
const through = require('through2');
module.exports = options => {
return through.obj(function(file, enc, next) {
if (file.isNull()) {
next(null, file);
return;
}
const minify = (buf, _, cb) => {
try {
let contents = Buffer.from(htmlmin.minify(buf.toString(), options));
if (next === cb) {
file.contents = contents;
cb(null, file);
return;
}
cb(null, contents);
next(null, file);
} catch (err) {
let opts = Object.assign({}, options, { fileName: file.path });
let error = new PluginError('gulp-htmlmin', err, opts);
if (next !== cb) {
next(error);
return;
}
cb(error);
}
};
if (file.isStream()) {
file.contents = file.contents.pipe(through(minify));
} else {
minify(file.contents, null, next);
}
});
};