mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
var babelCore = require('babel-core');
|
|
|
|
module.exports = function(cb, fileContents, url) {
|
|
var result = babelCore.transform(fileContents, {
|
|
sourceMaps: 'inline',
|
|
sourceFileName: '/sourcemapped/' + url
|
|
});
|
|
cb(null, result.code);
|
|
}
|