From ee0d073cd2eb4c0ca53f848f8e4cce427e776fc6 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Thu, 20 Jun 2013 15:25:46 -0700 Subject: [PATCH] Update default grunt task --- Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index ed7cac593..cb30af202 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -191,8 +191,8 @@ module.exports = (grunt) -> grunt.registerTask('compile', ['coffee', 'less', 'cson']) grunt.registerTask('lint', ['coffeelint', 'csslint', 'lesslint']) grunt.registerTask('ci', ['clean', 'bootstrap', 'build', 'test']) - grint.registerTask('deploy', ['clean', 'bootstrap', 'build', 'codesign']) - grunt.registerTask('default', ['build', 'install']) + grunt.registerTask('deploy', ['clean', 'bootstrap', 'build', 'codesign']) + grunt.registerTask('default', ['bootstrap', 'build', 'set-development-version', 'install']) spawn = (options, callback) -> grunt.util.spawn options, (error, results, code) ->