Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed May 24, 2021
1 parent adce5ec commit f39a471
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 11 deletions.
3 changes: 2 additions & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -8030,7 +8030,8 @@
}

async close(comment = new Uint8Array(0), options = {}) {
return closeFile(this, comment, options);
await closeFile(this, comment, options);
return this.writer.getData();
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2852,7 +2852,8 @@
}

async close(comment = new Uint8Array(0), options = {}) {
return closeFile(this, comment, options);
await closeFile(this, comment, options);
return this.writer.getData();
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -7060,7 +7060,8 @@
}

async close(comment = new Uint8Array(0), options = {}) {
return closeFile(this, comment, options);
await closeFile(this, comment, options);
return this.writer.getData();
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/zip-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker-deflate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-no-worker.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -2852,7 +2852,8 @@
}

async close(comment = new Uint8Array(0), options = {}) {
return closeFile(this, comment, options);
await closeFile(this, comment, options);
return this.writer.getData();
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/zip.min.js

Large diffs are not rendered by default.

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",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.2.37",
"version": "2.2.38",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit f39a471

Please sign in to comment.