Move the Store class to be inside transformation.

This commit is contained in:
Logan Smyth
2017-03-15 23:15:53 -07:00
parent 12a2124d16
commit 3e2d731d50
3 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import sourceMap from "source-map";
import generate from "babel-generator";
import codeFrame from "babel-code-frame";
import traverse from "babel-traverse";
import Store from "../../store";
import Store from "../store";
import { parse } from "babylon";
import * as util from "../../util";
import path from "path";

View File

@@ -1,4 +1,4 @@
import Store from "../store";
import Store from "./store";
import File from "./file";
export default class PluginPass extends Store {