From a3ddc12e24adf4fde812e3f8c1448b9bf9315c11 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 24 Nov 2013 00:58:05 -0800 Subject: [PATCH] Don't watch _output for changes --- Gruntfile.js | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 6311fe47a..6409ae289 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -3,7 +3,7 @@ module.exports = function (grunt) { var outputRoot = '_output/'; var outputDir = outputRoot +'UI/'; - var srcRoot = 'src/UI/' + var srcRoot = 'src/UI/'; var srcContent = srcRoot + 'Content/'; var destContent = outputDir + 'Content/'; @@ -87,7 +87,7 @@ module.exports = function (grunt) { cwd : srcRoot, expand: true, src : [ - '**/*.js', + '**/*.js' ], dest : outputDir } @@ -128,18 +128,17 @@ module.exports = function (grunt) { modules: [{ name: 'app', exclude: ['templates.js'] - }], - + }] } } }, watch: { options: { - nospawn: false, + nospawn: false }, bootstrap : { - files: [ srcContent + 'Bootstrap/**', srcContent +'FontAwesome/**'], + files: [ srcContent + 'Bootstrap/**', srcContent + 'FontAwesome/**'], tasks: ['less:bootstrap','less:general'] }, generalLess: { @@ -152,13 +151,13 @@ module.exports = function (grunt) { }, content : { files: [ - '**/index.html', - '**/*.css', - '**/*.png', - '**/*.jpg', - '**/*.ico', - '**/FontAwesome/*.*', - '**/fonts/*.*' + srcRoot + '**/index.html', + srcRoot + '**/*.css', + srcRoot + '**/*.png', + srcRoot + '**/*.jpg', + srcRoot + '**/*.ico', + srcRoot + '**/FontAwesome/*.*', + srcRoot + '**/fonts/*.*' ], tasks: ['copy:content'] },