add missing transform import and change babel import to a wildcard

This commit is contained in:
Sebastian McKenzie 2015-02-26 20:26:08 +11:00
parent 7729cb4b68
commit 4df9cf6c05
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import isFunction from "lodash/lang/isFunction";
import transform from "../transformation";
import fs from "fs";
export { default as _util, canCompile } from "../util";

View File

@ -3,7 +3,7 @@ import sourceMapSupport from "source-map-support";
import * as registerCache from "./cache";
import resolveRc from "./resolve-rc";
import extend from "lodash/object/extend";
import babel from "../node";
import * as babel from "../node";
import each from "lodash/collection/each";
import * as util from "../../util";
import fs from "fs";