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 24, 2022
1 parent 3c7413f commit 3300ee1
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -7227,7 +7227,7 @@
const writable = new WritableStream({
async write(chunk) {
await writer.ready;
await writer.write(new Uint8Array(chunk));
await writer.write(chunk);
},
async close() {
writer.releaseLock();
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@
const writable = new WritableStream({
async write(chunk) {
await writer.ready;
await writer.write(new Uint8Array(chunk));
await writer.write(chunk);
},
async close() {
writer.releaseLock();
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zip-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -6277,7 +6277,7 @@
const writable = new WritableStream({
async write(chunk) {
await writer.ready;
await writer.write(new Uint8Array(chunk));
await writer.write(chunk);
},
async close() {
writer.releaseLock();
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-inflate.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.

2 changes: 1 addition & 1 deletion dist/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@
const writable = new WritableStream({
async write(chunk) {
await writer.ready;
await writer.write(new Uint8Array(chunk));
await writer.write(chunk);
},
async close() {
writer.releaseLock();
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 index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7223,7 +7223,7 @@ function createWebWorkerInterface(workerData, { baseURL, chunkSize }) {
const writable = new WritableStream({
async write(chunk) {
await writer.ready;
await writer.write(new Uint8Array(chunk));
await writer.write(chunk);
},
async close() {
writer.releaseLock();
Expand Down
4 changes: 2 additions & 2 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.6.31",
"version": "2.6.32",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit 3300ee1

Please sign in to comment.