From 3f55acf9d5c9da7f13c04f06b2e809c535406203 Mon Sep 17 00:00:00 2001 From: Amir Jafarian Date: Fri, 13 Nov 2015 10:32:08 -0500 Subject: [PATCH] Warn user if missing a config file Report a warning when the main json file is missing and there is a local or {env} file present --- lib/config-loader.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/config-loader.js b/lib/config-loader.js index cc7ac42..e60c9df 100644 --- a/lib/config-loader.js +++ b/lib/config-loader.js @@ -89,6 +89,10 @@ function loadNamed(rootDir, env, name, mergeFn) { */ function findConfigFiles(appRootDir, env, name) { var master = ifExists(name + '.json'); + if (!master && (ifExistsWithAnyExt(name + '.local') || + ifExistsWithAnyExt(name + '.' + env))) { + console.warn('WARNING: Main config file "' + name + '.json" is missing'); + } if (!master) return []; var candidates = [