diff --git a/tasks/config/user.js b/tasks/config/user.js index 6cc864773..9bb316e62 100644 --- a/tasks/config/user.js +++ b/tasks/config/user.js @@ -34,11 +34,12 @@ catch(error) { if(!userConfig) { // No semantic.json file use tasks/config/defaults.js + console.error('Using default values for gulp'); userConfig = defaults; } else { // extend defaults using shallow copy - userConfig = extend(false, {}, defaults, config); + userConfig = extend(false, {}, defaults, userConfig); }