Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(config): Added Gruntfile linting
Browse files Browse the repository at this point in the history
Changed config properties to arrays for inclusion in Gruntfile Lodash unions, e.g. linting

Fixes #1125
  • Loading branch information
JulianLaval committed Jan 14, 2016
1 parent bf05dbc commit 6748a7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/assets/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']
}
};

0 comments on commit 6748a7f

Please sign in to comment.