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