This reverts commit 033681af8941d9678961f985c13e500c3c70f337, reversing changes made to a2d66c0fc8ee58e82be3efd59173803e66dee3e0. I brought you into this world, and I can take you out.
76 lines
1.7 KiB
JavaScript
76 lines
1.7 KiB
JavaScript
import isFunction from "lodash/isFunction";
|
|
import fs from "fs";
|
|
|
|
//
|
|
|
|
export { default as File } from "../transformation/file";
|
|
export { default as options } from "../transformation/file/options/config";
|
|
export { default as buildExternalHelpers } from "../tools/build-external-helpers";
|
|
export { default as template } from "babel-template";
|
|
export { version } from "../../package";
|
|
|
|
//
|
|
|
|
import * as util from "../util";
|
|
export { util };
|
|
|
|
import * as messages from "babel-messages";
|
|
export { messages };
|
|
|
|
import * as t from "babel-types";
|
|
export { t as types };
|
|
|
|
import traverse from "babel-traverse";
|
|
export { traverse };
|
|
|
|
import OptionManager from "../transformation/file/options/option-manager";
|
|
export { OptionManager };
|
|
|
|
export function Plugin(alias) {
|
|
throw new Error(`The (${alias}) Babel 5 plugin is being run with Babel 6.`);
|
|
}
|
|
|
|
//
|
|
|
|
import Pipeline from "../transformation/pipeline";
|
|
export { Pipeline };
|
|
|
|
let pipeline = new Pipeline;
|
|
export let analyse = pipeline.analyse.bind(pipeline);
|
|
export let transform = pipeline.transform.bind(pipeline);
|
|
export let transformFromAst = pipeline.transformFromAst.bind(pipeline);
|
|
|
|
//
|
|
|
|
export function transformFile(filename: string, opts?: Object, callback: Function) {
|
|
if (isFunction(opts)) {
|
|
callback = opts;
|
|
opts = {};
|
|
}
|
|
|
|
opts.filename = filename;
|
|
|
|
fs.readFile(filename, function (err, code) {
|
|
let result;
|
|
|
|
if (!err) {
|
|
try {
|
|
result = transform(code, opts);
|
|
} catch (_err) {
|
|
err = _err;
|
|
}
|
|
}
|
|
|
|
if (err) {
|
|
callback(err);
|
|
} else {
|
|
callback(null, result);
|
|
}
|
|
});
|
|
}
|
|
|
|
export function transformFileSync(filename: string, opts?: Object = {}): string {
|
|
opts.filename = filename;
|
|
return transform(fs.readFileSync(filename, "utf8"), opts);
|
|
}
|