I'm trying to compress a directory using grunt. I have tried the following sections in my grunt file.
compress: {
main: {
options: {
archive: 'dist/output.zip',
mode: 'zip'
},
files: [{
src: ['build/*'],
cwd: 'build',
expand: true
}]
}
}
which gives me an empty zip file. Or
compress: {
main: {
options: {
archive: 'dist/output.zip',
mode: 'zip'
},
files: [{
src: ['build/*']
}]
}
}
which gives me the following structure in my zip file
output.zip
- build
- my files
but I would like to remove the build directory to get
output.zip
- my files
What changes can I make to get this structure?
Have you tried:
compress: {
main: {
options: {
archive: 'dist/output.zip',
mode: 'zip'
},
files: [{
src: ['**/*'],
cwd: 'build/',
expand: true
}]
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With