From e38f442a39042dea13a766dc61cb5fa3aafcc930 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Fri, 13 Feb 2015 21:48:41 -0800 Subject: [PATCH] Add task to test full build chain. --- Gruntfile.coffee | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 7dc5d529a..0293a60e5 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -330,14 +330,18 @@ module.exports = (grunt) -> 'build-crx' ] + grunt.registerTask 'full', [ + 'build' + 'pack' + 'concat:meta' + 'copy:builds' + ] + grunt.registerTask 'tag', 'Tag a new version', (version) -> grunt.task.run [ "setversion:#{version}" 'updcl' - 'build' - 'pack' - 'concat:meta' - 'copy:builds' + 'full' 'shell:commit' ]