mirror of
https://github.com/zero-peak/ZeroOmega.git
synced 2025-01-22 15:08:12 -05:00
19 lines
308 B
CoffeeScript
19 lines
308 B
CoffeeScript
module.exports =
|
|
options:
|
|
archive: './release.zip'
|
|
mode: 'zip'
|
|
build:
|
|
files: [
|
|
{
|
|
cwd: 'build'
|
|
src: ['**', '!manifest.json']
|
|
expand: true
|
|
filter: 'isFile'
|
|
}
|
|
{
|
|
cwd: 'tmp/'
|
|
src: 'manifest.json'
|
|
expand: true
|
|
}
|
|
]
|