You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/09/09 11:53:24 UTC

[04/50] [abbrv] git commit: updated refs/heads/1867-feature-plugins to 8aad450

Fauxton: fix watch task failing for no include pattern


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/d0a35ce0
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/d0a35ce0
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/d0a35ce0

Branch: refs/heads/1867-feature-plugins
Commit: d0a35ce012d0f7c90d9de93f2a10e0b59aa61bc5
Parents: b7ec4fb
Author: Garren Smith <ga...@gmail.com>
Authored: Mon Aug 19 11:35:06 2013 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Sep 9 11:16:42 2013 +0200

----------------------------------------------------------------------
 src/fauxton/Gruntfile.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/d0a35ce0/src/fauxton/Gruntfile.js
----------------------------------------------------------------------
diff --git a/src/fauxton/Gruntfile.js b/src/fauxton/Gruntfile.js
index f25e3b8..1c58bb6 100644
--- a/src/fauxton/Gruntfile.js
+++ b/src/fauxton/Gruntfile.js
@@ -234,7 +234,9 @@ module.exports = function(grunt) {
         tasks: ['clean:watch', 'dependencies','less', 'concat:index_css'],
       },
       html: {
-        files: helper.watchFiles(['.html'], []),
+        // the index.html is added in as a dummy file incase there is no
+        // html dependancies this will break. So we need one include pattern
+        files: helper.watchFiles(['.html'], ['./index.html']),
         tasks: ['clean:watch', 'dependencies']
       },
       options: {