Skip to content

Commit

Permalink
Add grunt target for a zip ball.
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisCatus committed Sep 24, 2014
1 parent a008e49 commit e2332c4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions omega-target-chromium-extension/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/omega_target_*.min.js

/build
/release.zip
1 change: 1 addition & 0 deletions omega-target-chromium-extension/grunt/aliases.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ module.exports =
'copy'
]
test: ['mochaTest']
release: ['default', 'compress']
9 changes: 9 additions & 0 deletions omega-target-chromium-extension/grunt/compress.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports =
options:
archive: './release.zip'
mode: 'zip'
build:
cwd: 'build'
src: ['**']
expand: true
filter: 'isFile'
2 changes: 1 addition & 1 deletion omega-target-chromium-extension/overlay/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "__MSG_manifest_app_name__",
"version": "2.1.3",
"version": "2.1.4",
"description": "__MSG_manifest_app_description__",
"icons": {
"16": "img/icons/omega-16.png",
Expand Down
1 change: 1 addition & 0 deletions omega-target-chromium-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"grunt-browserify": "^3.0.0",
"grunt-coffeelint": "^0.0.13",
"grunt-contrib-coffee": "^0.11.1",
"grunt-contrib-compress": "^0.12.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "~0.11.0",
Expand Down

0 comments on commit e2332c4

Please sign in to comment.