-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathgulp-csswring.js
50 lines (35 loc) · 1.05 KB
/
gulp-csswring.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
#!/usr/bin/env node
var through = require('through2');
var csswring = require('csswring');
var applySourceMap = require('vinyl-sourcemaps-apply');
module.exports = function(options) {
options = options || {};
return through.obj(function(file, enc, cb) {
if(file.isStream()) {
throw new Error('Streams are not supported.');
}
if (!file.isNull()) {
if(file.sourceMap) {
options.map = {
prev: file.sourceMap.mappings ? file.sourceMap : undefined,
annotation: false,
sourcesContent: true
};
options.from =
options.to = file.relative;
}
var contents = file.contents.toString();
var result = csswring().wring(contents, options);
file.contents = new Buffer(result.css);
if(file.sourceMap) {
var map = JSON.parse(result.map.toString());
map.sources = file.sourceMap.sources;
map.file = file.sourceMap.file;
// applySourceMap(file, map);
file.sourceMap = map;
}
}
this.push(file);
cb();
});
};