-
Notifications
You must be signed in to change notification settings - Fork 70
/
index.js
50 lines (42 loc) · 1.4 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
var through = require('through2');
var applySourceMap = require('vinyl-sourcemaps-apply');
var replaceExt = require('replace-ext');
var PluginError = require('plugin-error');
module.exports = function (opt) {
function replaceExtension(path) {
path = path.replace(/\.coffee\.md$/, '.litcoffee');
return replaceExt(path, '.js');
}
function transform(file, enc, cb) {
if (file.isNull()) return cb(null, file);
if (file.isStream()) return cb(new PluginError('gulp-coffee', 'Streaming not supported'));
var data;
var str = file.contents.toString('utf8');
var dest = replaceExtension(file.path);
var options = Object.assign({
bare: false,
coffee: require('coffeescript'),
header: false,
sourceMap: Boolean(file.sourceMap),
sourceRoot: false,
literate: /\.(litcoffee|coffee\.md)$/.test(file.path),
filename: file.path,
sourceFiles: [file.relative],
generatedFile: replaceExtension(file.relative)
}, opt);
try {
data = options.coffee.compile(str, options);
} catch (err) {
return cb(new PluginError('gulp-coffee', err));
}
if (data && data.v3SourceMap && file.sourceMap) {
applySourceMap(file, data.v3SourceMap);
file.contents = Buffer.from(data.js);
} else {
file.contents = Buffer.from(data);
}
file.path = dest;
cb(null, file);
}
return through.obj(transform);
};