From fb297f7f72a738b7f812f853cc907f32e5f6e939 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 11 Sep 2014 16:09:45 -0300 Subject: [PATCH] Added config.js to grunt watch, also mobile.js and init.js --- Gruntfile.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 4b1216fb4..d78203f5e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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: {