-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
67 lines (52 loc) · 1.37 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
var through = require('through2');
var rimraf = require('rimraf');
/**
* Return a stream for deleting the original file
* @param {object} [options]
* @param {RegExp|function} [options.exclude]
* @param {function} [options.remove]
* @returns {function}
*/
module.exports = function(options) {
var exclude = options && options.exclude || false;
var remove = options && options.remove || rimraf;
options = options || {};
return through.obj(function(file, enc, cb) {
//delete the original file
var del = function() {
if(file.revOrigPath) {
rimraf(file.revOrigPath, function(err) {
if (err) return cb(err);
cb(null, file);
});
} else {
cb(null);
}
};
//don't delete files that haven't been rewritten
if (file.revOrigPath === file.path) {
return cb(null, file);
}
//exclude files from being deleted
if (exclude) {
var
excluded,
filter = exclude
;
if (typeof filter === 'function') {
excluded = filter(file);
} else if(filter instanceof RegExp) {
excluded = filter.test(file.path);
}
if (excluded) {
return cb(null, file);
} else {
//delete the original file
return del();
}
} else {
//delete the original file
return del();
}
});
};