From c9c05302d2fe61f2d6dd3e6f72acd615acbe9120 Mon Sep 17 00:00:00 2001 From: Mario Volke Date: Thu, 16 Oct 2014 14:49:47 +0200 Subject: [PATCH] remove manifest job in grunt watch --- Gruntfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index c6b1d52..851e7be 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -404,11 +404,11 @@ module.exports = function(grunt) { watch: { css: { files: ['src/sass/**/*.scss'], - tasks: ['dist-css', 'manifest'] + tasks: ['dist-css'] }, js: { files: ['src/js/**/*.js'], - tasks: ['copy:js', 'copy:integration', 'manifest'] + tasks: ['copy:js', 'copy:integration'] }, icons: { files: ['src/index.html', 'src/img/icons/*.svg', '!src/img/icons/all.svg'], @@ -416,11 +416,11 @@ module.exports = function(grunt) { }, lib: { files: ['src/lib/**/*.js'], - tasks: ['copy:lib', 'manifest'] + tasks: ['copy:lib'] }, app: { files: ['src/*.js', 'src/**/*.html', 'src/**/*.json', 'src/manifest.*', 'src/img/**/*', 'src/font/**/*'], - tasks: ['copy:app', 'copy:ca', 'copy:tpl', 'copy:img', 'copy:font', 'manifest-dev', 'manifest'] + tasks: ['copy:app', 'copy:ca', 'copy:tpl', 'copy:img', 'copy:font', 'manifest-dev'] } },