From 34546e3bc89e77e6510b842eeb29ea0336581ad9 Mon Sep 17 00:00:00 2001 From: John Days Date: Tue, 2 Jun 2015 23:32:49 +0100 Subject: [PATCH] Spaces before and after if conditions --- local-cli/bundle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/local-cli/bundle.js b/local-cli/bundle.js index 88bc2d520..9a2530514 100644 --- a/local-cli/bundle.js +++ b/local-cli/bundle.js @@ -12,12 +12,12 @@ function getBundle(flags) { var outPath = flags.out ? flags.out : OUT_PATH; var projectRoots = [path.resolve(__dirname, '../../..')]; - if(flags.root){ + if (flags.root) { projectRoots.push(path.resolve(flags.root)); } var assetRoots = [path.resolve(__dirname, '../../..')]; - if(flags.assetRoot){ + if (flags.assetRoot) { assetRoots.push(path.resolve(flags.assetRoot)); }