babel/packages/babel-core/src/transform-file.js
Nicolas Marien cf62908bbd Keep user options intact in transformFile (#6890)
* Preserve user options in transformFile

* Improve tests for transformFile user opts handling
2017-11-25 10:13:56 -08:00

44 lines
1.1 KiB
JavaScript

// @flow
import fs from "fs";
import loadConfig, { type InputOptions } from "./config";
import { runAsync, type FileResultCallback } from "./transformation";
type TransformFile = {
(filename: string, callback: FileResultCallback): void,
(filename: string, opts: ?InputOptions, callback: FileResultCallback): void,
};
export default ((function transformFile(filename, opts, callback) {
let options;
if (typeof opts === "function") {
callback = opts;
opts = undefined;
}
if (opts == null) {
options = { filename };
} else if (opts && typeof opts === "object") {
options = Object.assign({}, opts, { filename });
}
process.nextTick(() => {
let cfg;
try {
cfg = loadConfig(options);
if (cfg === null) return callback(null, null);
} catch (err) {
return callback(err);
}
// Reassignment to keep Flow happy.
const config = cfg;
fs.readFile(filename, "utf8", function(err, code: string) {
if (err) return callback(err, null);
runAsync(config, code, null, callback);
});
});
}: Function): TransformFile);