From 6748a7fbf97436f225adb016545658d8a30f880b Mon Sep 17 00:00:00 2001 From: Julian Laval Date: Thu, 14 Jan 2016 18:23:54 +0000 Subject: [PATCH] fix(config): Added Gruntfile linting Changed config properties to arrays for inclusion in Gruntfile Lodash unions, e.g. linting Fixes #1125 --- config/assets/default.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/assets/default.js b/config/assets/default.js index 8e18df1549..bb9d2142c0 100644 --- a/config/assets/default.js +++ b/config/assets/default.js @@ -45,14 +45,14 @@ module.exports = { templates: ['build/templates.js'] }, server: { - gruntConfig: 'gruntfile.js', - gulpConfig: 'gulpfile.js', + gruntConfig: ['gruntfile.js'], + gulpConfig: ['gulpfile.js'], allJS: ['server.js', 'config/**/*.js', 'modules/*/server/**/*.js'], models: 'modules/*/server/models/**/*.js', routes: ['modules/!(core)/server/routes/**/*.js', 'modules/core/server/routes/**/*.js'], sockets: 'modules/*/server/sockets/**/*.js', - config: 'modules/*/server/config/*.js', + config: ['modules/*/server/config/*.js'], policies: 'modules/*/server/policies/*.js', - views: 'modules/*/server/views/*.html' + views: ['modules/*/server/views/*.html'] } };