mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-02-02 02:58:13 -05:00
Add grunt target for a zip ball.
This commit is contained in:
parent
a008e492b0
commit
e2332c4ff9
1
omega-target-chromium-extension/.gitignore
vendored
1
omega-target-chromium-extension/.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/omega_target_*.min.js
|
/omega_target_*.min.js
|
||||||
|
|
||||||
/build
|
/build
|
||||||
|
/release.zip
|
||||||
|
@ -6,3 +6,4 @@ module.exports =
|
|||||||
'copy'
|
'copy'
|
||||||
]
|
]
|
||||||
test: ['mochaTest']
|
test: ['mochaTest']
|
||||||
|
release: ['default', 'compress']
|
||||||
|
9
omega-target-chromium-extension/grunt/compress.coffee
Normal file
9
omega-target-chromium-extension/grunt/compress.coffee
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
module.exports =
|
||||||
|
options:
|
||||||
|
archive: './release.zip'
|
||||||
|
mode: 'zip'
|
||||||
|
build:
|
||||||
|
cwd: 'build'
|
||||||
|
src: ['**']
|
||||||
|
expand: true
|
||||||
|
filter: 'isFile'
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "__MSG_manifest_app_name__",
|
"name": "__MSG_manifest_app_name__",
|
||||||
"version": "2.1.3",
|
"version": "2.1.4",
|
||||||
"description": "__MSG_manifest_app_description__",
|
"description": "__MSG_manifest_app_description__",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "img/icons/omega-16.png",
|
"16": "img/icons/omega-16.png",
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
"grunt-browserify": "^3.0.0",
|
"grunt-browserify": "^3.0.0",
|
||||||
"grunt-coffeelint": "^0.0.13",
|
"grunt-coffeelint": "^0.0.13",
|
||||||
"grunt-contrib-coffee": "^0.11.1",
|
"grunt-contrib-coffee": "^0.11.1",
|
||||||
|
"grunt-contrib-compress": "^0.12.0",
|
||||||
"grunt-contrib-copy": "^0.5.0",
|
"grunt-contrib-copy": "^0.5.0",
|
||||||
"grunt-contrib-watch": "^0.6.1",
|
"grunt-contrib-watch": "^0.6.1",
|
||||||
"grunt-mocha-test": "~0.11.0",
|
"grunt-mocha-test": "~0.11.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user