-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
89 lines (82 loc) · 2.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
'use strict';
var through2 = require('through2');
var diffLines = require('diff').diffLines;
var clc = require('cli-color');
var fs = require('fs');
var path = require('path');
var PluginError = require('gulp-util').PluginError;
function pluginError(msg) {
return new PluginError('gulp-diff', msg);
}
var diff = function diff(dest) {
var stream = through2.obj(function(file, enc, cb) {
if (file.isNull()) {
return cb(null, file);
}
var compareFile = path.resolve(dest || file.base, file.relative);
fs.stat(compareFile, function(errStat, stat) {
if (errStat) {
stream.emit('error', pluginError('Failed to stat file: ' + errStat.message));
return cb();
}
if (stat && !stat.isDirectory()) {
fs.readFile(compareFile, 'utf8', function(errRead, contents) {
if (errRead) {
stream.emit('error', pluginError('Failed to read file: ' + errRead.message));
return cb();
}
if (contents !== String(file.contents)) {
try {
file.diff = diffLines(fs.readFileSync(compareFile, 'utf8'), String(file.contents));
} catch (err) {
stream.emit('error', pluginError('Failed to diff file: ' + err.message));
return cb();
}
}
return cb(null, file);
});
} else {
if (!stat) {
stream.emit('error', pluginError('Failed to find file: ' + compareFile));
return cb();
} else {
return cb(null, file);
}
}
});
});
return stream;
};
var reporter = function reporter(opts) {
opts = opts || {};
return through2.obj(function(file, enc, cb) {
if (file.diff && Object.keys(file.diff).length) {
if (!opts.quiet) {
console.log('\n' + clc.underline(file.path), '\n');
console.log(file.diff.map(formatLine).join(''));
}
if (opts.fail) {
this.emit('error', pluginError('Files differ'));
}
}
return cb(null, file);
});
};
function formatLine(part, i) {
var indent = ' ';
return (!i ? indent : '') + part.value.split('\n').map(function(ln) {
return clc[colorLine(part)](ln);
}).join('\n' + indent);
}
function colorLine(ln) {
if (ln.added) {
return 'bgGreen';
}
if (ln.removed) {
return 'bgRed';
}
return 'blackBright';
}
module.exports = diff;
module.exports.reporter = reporter;
module.exports.diff = diff;