62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
|
'use strict';
|
||
|
var path = require('path');
|
||
|
var PluginError = require('plugin-error');
|
||
|
var through = require('through2');
|
||
|
var applySourceMap = require('vinyl-sourcemaps-apply');
|
||
|
var objectAssign = require('object-assign');
|
||
|
var replaceExt = require('replace-ext');
|
||
|
var babel = require('babel-core');
|
||
|
|
||
|
function replaceExtension(fp) {
|
||
|
return path.extname(fp) ? replaceExt(fp, '.js') : fp;
|
||
|
}
|
||
|
|
||
|
module.exports = function (opts) {
|
||
|
opts = opts || {};
|
||
|
|
||
|
return through.obj(function (file, enc, cb) {
|
||
|
if (file.isNull()) {
|
||
|
cb(null, file);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (file.isStream()) {
|
||
|
cb(new PluginError('gulp-babel', 'Streaming not supported'));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
var fileOpts = objectAssign({}, opts, {
|
||
|
filename: file.path,
|
||
|
filenameRelative: file.relative,
|
||
|
sourceMap: Boolean(file.sourceMap),
|
||
|
sourceFileName: file.relative,
|
||
|
sourceMapTarget: file.relative
|
||
|
});
|
||
|
|
||
|
var res = babel.transform(file.contents.toString(), fileOpts);
|
||
|
|
||
|
if (file.sourceMap && res.map) {
|
||
|
res.map.file = replaceExtension(res.map.file);
|
||
|
applySourceMap(file, res.map);
|
||
|
}
|
||
|
|
||
|
if (!res.ignored) {
|
||
|
file.contents = new Buffer(res.code);
|
||
|
file.path = replaceExtension(file.path);
|
||
|
}
|
||
|
|
||
|
file.babel = res.metadata;
|
||
|
|
||
|
this.push(file);
|
||
|
} catch (err) {
|
||
|
this.emit('error', new PluginError('gulp-babel', err, {
|
||
|
fileName: file.path,
|
||
|
showProperties: false
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
cb();
|
||
|
});
|
||
|
};
|