-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
39 lines (29 loc) · 879 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
var through = require('through2');
var gutil = require('gulp-util');
var PluginError = gutil.PluginError;
var purge = require('css-purge-alt/lib/css-purge');
const PLUGIN_NAME = 'gulp-css-purge';
function purgeStream(contents) {
var stream = through();
stream.write(contents);
return stream;
}
function gulpCSSPurge() {
var stream = through.obj(function(file, enc, cb) {
if (file.isNull()) return cb(null, file);
if (file.isStream()) return cb(new PluginError(PLUGIN_NAME, 'Streaming not supported'));
var purgedCSS = ""
try {
purgedCSS = new Buffer(purge(null, null, null, file.contents.toString()));
} catch (err) {
return cb(new PluginError(PLUGIN_NAME, err));
}
if (file.isBuffer()) {
file.contents = purgedCSS;
}
this.push(file);
return cb();
})
return stream;
}
module.exports = gulpCSSPurge;