Scoped: change src imports to @babel/ [skip ci]

This commit is contained in:
Henry Zhu
2017-10-16 14:16:13 -04:00
parent 8e5e27577a
commit cde0054227
129 changed files with 247 additions and 247 deletions

View File

@@ -1,5 +1,5 @@
import commander from "commander";
import { buildExternalHelpers } from "babel-core";
import { buildExternalHelpers } from "@babel/core";
function collect(value, previousValue): Array<string> {
// If the user passed the option with no value, like "babel-external-helpers --whitelist", do nothing.

View File

@@ -2,7 +2,7 @@
import fs from "fs";
import commander from "commander";
import { version } from "babel-core";
import { version } from "@babel/core";
import uniq from "lodash/uniq";
import glob from "glob";

View File

@@ -1,6 +1,6 @@
import commander from "commander";
import readdirRecursive from "fs-readdir-recursive";
import * as babel from "babel-core";
import * as babel from "@babel/core";
import includes from "lodash/includes";
import path from "path";
import fs from "fs";