Lets use copy instead of compress

This commit is contained in:
Jordan Bates 2013-05-28 13:51:27 -07:00
parent 3535f8919b
commit 9685885b01

View File

@ -81,6 +81,9 @@ module.exports = (grunt) ->
dest: 'builds/crx/'
expand: true
flatten: true
opera:
files:
'builds/4chan-X-Opera.nex': 'builds/4chan-X-Chrome.zip'
coffee:
script:
@ -130,14 +133,6 @@ module.exports = (grunt) ->
expand: true
cwd: 'builds/crx/'
src: '**'
opera:
options:
archive: 'builds/4chan-X-Opera.nex'
level: 9
pretty: true
expand: true
cwd: 'builds/crx/'
src: '**'
clean:
builds: 'builds'
@ -195,7 +190,7 @@ module.exports = (grunt) ->
grunt.registerTask 'release', [
'default'
'compress:crx'
'compress:opera'
'copy:opera'
'shell:commit'
'shell:push'
]