From 19bfa4a35b73b878df155aa81ef8ad2a678c9dce Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 6 Mar 2015 23:15:20 +1100 Subject: [PATCH] add debug message for travis... --- src/babel/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/babel/util.js b/src/babel/util.js index 033f183bea..509b703b74 100644 --- a/src/babel/util.js +++ b/src/babel/util.js @@ -133,7 +133,6 @@ try { exports.templates = require("../../templates.json"); } catch (err) { if (err.code !== "MODULE_NOT_FOUND") throw err; - exports.templates = loadTemplates(); } @@ -146,5 +145,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}`); } } catch (err) { + console.log(err.code); if (err.code !== "MODULE_NOT_FOUND") throw err; }