Added 'copy:ace' to the release task and out of the couchdebug one
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/1ba9aa35 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/1ba9aa35 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/1ba9aa35 Branch: refs/heads/1744-single-config-file Commit: 1ba9aa35a17ec7710a941981644111e655c7ecf4 Parents: 72c7810 Author: suelockwood <[email protected]> Authored: Wed Dec 4 14:56:43 2013 -0500 Committer: suelockwood <[email protected]> Committed: Wed Dec 4 14:56:43 2013 -0500 ---------------------------------------------------------------------- src/fauxton/Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/1ba9aa35/src/fauxton/Gruntfile.js ---------------------------------------------------------------------- diff --git a/src/fauxton/Gruntfile.js b/src/fauxton/Gruntfile.js index 75fcc5d..e8a12be 100644 --- a/src/fauxton/Gruntfile.js +++ b/src/fauxton/Gruntfile.js @@ -423,7 +423,7 @@ module.exports = function(grunt) { grunt.registerTask('watchRun', ['clean:watch', 'dependencies', 'jshint']); // build a release - grunt.registerTask('release', ['clean' ,'dependencies', "gen_initialize:release", 'jshint', 'build', 'minify', 'copy:dist']); + grunt.registerTask('release', ['clean' ,'dependencies', "gen_initialize:release", 'jshint', 'build', 'minify', 'copy:dist', 'copy:ace']); /* * Install into CouchDB in either debug, release, or couchapp mode @@ -431,7 +431,7 @@ module.exports = function(grunt) { // make a development install that is server by mochiweb under _utils grunt.registerTask('couchdebug', ['debug', 'copy:couchdebug']); // make a minimized install that is server by mochiweb under _utils - grunt.registerTask('couchdb', ['release', 'copy:ace', 'copy:couchdb']); + grunt.registerTask('couchdb', ['release', 'copy:couchdb']); // make an install that can be deployed as a couchapp grunt.registerTask('couchapp_setup', ['release']); // install fauxton as couchapp
