Avoid usage of exports/module.exports/require().

This commit is contained in:
Logan Smyth
2017-02-20 00:52:24 -08:00
parent d9f01cbce6
commit 4ee385e96c
32 changed files with 141 additions and 105 deletions

View File

@@ -3,8 +3,8 @@
* when found, before invoking the "real" _babel-node(1) executable.
*/
const getV8Flags = require("v8flags");
const path = require("path");
import getV8Flags from "v8flags";
import path from "path";
let args = [path.join(__dirname, "_babel-node")];