packing shouldn't be in main build task because it requires key

This commit is contained in:
ccd0 2014-07-01 12:21:41 -07:00
parent 353d46dad9
commit 43d78f4a19

View File

@ -209,7 +209,6 @@ module.exports = (grunt) ->
grunt.registerTask 'build-crx-channel', [
'concat:crx'
'copy:crx'
'crx:prod'
]
grunt.registerTask 'build-crx', [
@ -226,6 +225,15 @@ module.exports = (grunt) ->
'clean:tmpcrx'
]
grunt.registerTask 'pack', [
'set-channel:stable'
'crx:prod'
'set-channel:beta'
'crx:prod'
'set-channel:noupdate'
'crx:prod'
]
grunt.registerTask 'build-userscript', [
'set-build:userscript'
'concat:coffee'
@ -247,6 +255,7 @@ module.exports = (grunt) ->
grunt.registerTask 'tag', [
'build'
'pack'
'concat:meta'
'copy:builds'
'shell:commit'