summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Metson <simon+github@cloudant.com>2013-03-11 16:25:52 +0000
committerRussell Branca <chewbranca@gmail.com>2013-03-15 14:35:41 -0700
commit19f22cdf1b7c3ba48ab164e860946c1ba0a9d320 (patch)
treedb6b0bf2d2db48635e002a2502b5fe4a0d556a83
parent8a206130654aff641a2dbd509f26c6a58ae3767e (diff)
downloadcouchdb-19f22cdf1b7c3ba48ab164e860946c1ba0a9d320.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');