From c8cd5f42290021172615d5811f57b04847fb4ae2 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Mon, 20 Aug 2018 10:28:43 -0500 Subject: [PATCH] consistent indentation --- lib/pipeline/webpack.config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/pipeline/webpack.config.js b/lib/pipeline/webpack.config.js index 4737824a8..e8c571372 100644 --- a/lib/pipeline/webpack.config.js +++ b/lib/pipeline/webpack.config.js @@ -50,18 +50,18 @@ try { } const entry = Object.keys(embarkAssets) - .filter(key => key.match(/\.js?$/)) - .reduce((obj, key) => { - obj[key] = embarkAssets[key] - .map(file => { - let file_path = file.path; - if (!file.path.match(/^\.\//)) { - file_path = './' + file_path; - } - return file_path; - }); - return obj; - }, {}); + .filter(key => key.match(/\.js?$/)) + .reduce((obj, key) => { + obj[key] = embarkAssets[key] + .map(file => { + let file_path = file.path; + if (!file.path.match(/^\.\//)) { + file_path = './' + file_path; + } + return file_path; + }); + return obj; + }, {}); function resolve(pkgName) { if (Array.isArray(pkgName)) {