Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 50F88D387 for ; Fri, 15 Mar 2013 16:53:47 +0000 (UTC) Received: (qmail 299 invoked by uid 500); 15 Mar 2013 16:53:45 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 169 invoked by uid 500); 15 Mar 2013 16:53:45 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 99743 invoked by uid 99); 15 Mar 2013 16:53:44 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Mar 2013 16:53:44 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 913A718B2D; Fri, 15 Mar 2013 16:53:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chewbranca@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [13/27] git commit: update tasks Message-Id: <20130315165344.913A718B2D@tyr.zones.apache.org> Date: Fri, 15 Mar 2013 16:53:44 +0000 (UTC) update tasks Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/73350051 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/73350051 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/73350051 Branch: refs/heads/fauxton Commit: 73350051f9794f6428a4b36ce7be1c0561ebbad7 Parents: 3d4781d Author: Simon Metson Authored: Mon Mar 11 16:25:52 2013 +0000 Committer: Simon Metson Committed: Mon Mar 11 20:50:24 2013 +0000 ---------------------------------------------------------------------- src/fauxton/grunt.js | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/73350051/src/fauxton/grunt.js ---------------------------------------------------------------------- diff --git a/src/fauxton/grunt.js b/src/fauxton/grunt.js index 08c95af..0e9ee5d 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');