twolfson / grunt-zip

Zip and unzip files via a grunt plugin
MIT License
87 stars 19 forks source link

Support for zip file updates #43

Closed dbleier closed 7 years ago

dbleier commented 7 years ago

Does your plugin support updating files in an existing zip file without rewriting the entire zip file? such as zip -u myzip.zip filesforupdating/*

twolfson commented 7 years ago

Nope, it doesn't. If we were to add support, it would require a full overwrite as well; with the underlying library, we would have to load the ZIP into memory, update its contents, and re-output everything