remove rogue console.log

This commit is contained in:
Sebastian McKenzie 2015-03-06 23:40:30 +11:00
parent 8afdeaf557
commit 7d446807a9

View File

@ -163,7 +163,6 @@ try {
throw new ReferenceError(`The verison of babel-runtime of ${runtimePackage.runtime} that you have installed does not match the babel verison of ${version}`); throw new ReferenceError(`The verison of babel-runtime of ${runtimePackage.runtime} that you have installed does not match the babel verison of ${version}`);
} }
} catch (err) { } catch (err) {
console.log(err.code);
if (err.code !== "MODULE_NOT_FOUND") throw err; if (err.code !== "MODULE_NOT_FOUND") throw err;
} }