Merge pull request #1368 from cmgustavo/feature/01-grunt

Added config.js to grunt watch, also mobile.js and init.js
This commit is contained in:
Matias Alejo Garcia 2014-09-11 20:28:47 -03:00
commit 3cd4b9c1b0

View file

@ -51,14 +51,20 @@ module.exports = function(grunt) {
},
main: {
files: [
'js/init.js',
'js/app.js',
'js/directives.js',
'js/filters.js',
'js/routes.js',
'js/mobile.js',
'js/services/*.js',
'js/controllers/*.js'
],
tasks: ['concat:main']
},
config: {
files: ['config.js'],
tasks: ['shell:dev', 'concat:main']
}
},
mochaTest: {