Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Sep 5, 2023
1 parent 12a9fd5 commit e140faa
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
3 changes: 3 additions & 0 deletions dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -11183,6 +11183,9 @@

async exportZip(writer, options) {
const zipEntry = this;
if (options.bufferedWrite === undefined) {
options.bufferedWrite = true;
}
await Promise.all([initReaders(zipEntry, options.readerOptions), initStream(writer)]);
const zipWriter = new ZipWriter(writer, options);
await exportZip(zipWriter, zipEntry, getTotalSize([zipEntry], "uncompressedSize"), options);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5329,6 +5329,9 @@

async exportZip(writer, options) {
const zipEntry = this;
if (options.bufferedWrite === undefined) {
options.bufferedWrite = true;
}
await Promise.all([initReaders(zipEntry, options.readerOptions), initStream(writer)]);
const zipWriter = new ZipWriter(writer, options);
await exportZip(zipWriter, zipEntry, getTotalSize([zipEntry], "uncompressedSize"), options);
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11179,6 +11179,9 @@ class ZipDirectoryEntry extends ZipEntry {

async exportZip(writer, options) {
const zipEntry = this;
if (options.bufferedWrite === undefined) {
options.bufferedWrite = true;
}
await Promise.all([initReaders(zipEntry, options.readerOptions), initStream(writer)]);
const zipWriter = new ZipWriter(writer, options);
await exportZip(zipWriter, zipEntry, getTotalSize([zipEntry], "uncompressedSize"), options);
Expand Down
2 changes: 1 addition & 1 deletion index.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.7.28",
"version": "2.7.29",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit e140faa

Please sign in to comment.