summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Metson <simon+github@cloudant.com>2013-03-11 16:25:52 +0000
committerSimon Metson <simon+github@cloudant.com>2013-03-11 20:50:24 +0000
commit73350051f9794f6428a4b36ce7be1c0561ebbad7 (patch)
tree2e593ef8644783c6394322c46712e7570ae99d5f
parent3d4781de0b37ada0ebff3a6c4dc2a1f6da9feb95 (diff)
downloadcouchdb-73350051f9794f6428a4b36ce7be1c0561ebbad7.tar.gz
update tasks
-rw-r--r--src/fauxton/grunt.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fauxton/grunt.js b/src/fauxton/grunt.js
index 08c95af1d..0e9ee5d0e 100644
--- a/src/fauxton/grunt.js
+++ b/src/fauxton/grunt.js
@@ -337,14 +337,14 @@ module.exports = function(grunt) {
grunt.registerTask("default", "test dependencies build release install");
grunt.registerTask("dev", "debug server:debug");
// make a debug install
- grunt.registerTask("debug", "test dependencies build template:debug copy:debug concat:debug");
+ grunt.registerTask("debug", "test dependencies build template copy:debug concat:debug");
// make an install that is server by mochiweb under _utils
- grunt.registerTask("couchdebug", "debug template:couchdebug copy:couchdebug");
+ grunt.registerTask("couchdebug", "debug template copy:couchdebug");
// make an install that can be deployed as a couchapp
- grunt.registerTask("couchapp_setup", "debug template:couchapp");
- grunt.registerTask("couchdb", "test dependencies build minify template:couchdb copy:couchdb");
+ grunt.registerTask("couchapp_setup", "debug template");
+ grunt.registerTask("couchdb", "test dependencies build minify template copy:couchdb");
// build a release
- grunt.registerTask("release", "test dependencies build minify template:release copy:dist");
+ grunt.registerTask("release", "test dependencies build minify template copy:dist");
// install fauxton as couchapp
grunt.registerTask('couchapp_install', 'rmcouchdb:fauxton mkcouchdb:fauxton couchapp:fauxton');
grunt.registerTask('couchapp_deploy', 'couchapp_setup couchapp_install');