From a7d720e94283c267e61652cebb3e1472b92ac41e Mon Sep 17 00:00:00 2001 From: Ushko Igor Date: Mon, 17 Oct 2016 11:48:22 +0300 Subject: [PATCH] indent --- lib/Common.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Common.js b/lib/Common.js index 3674911e..b6d3fce4 100644 --- a/lib/Common.js +++ b/lib/Common.js @@ -234,9 +234,9 @@ Common.parseConfig = function(confObj, filename) { return yamljs.parse(confObj.toString()); } else if (filename.indexOf('.config.js') > -1) { - var confPath = require.resolve(path.resolve(filename)); - delete require.cache[confPath]; - return require(confPath); + var confPath = require.resolve(path.resolve(filename)); + delete require.cache[confPath]; + return require(confPath); } };