Skip to content

Commit

Permalink
bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Aug 21, 2024
1 parent dcaf46d commit 1631a5b
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zip-js/zip-js",
"version": "2.7.49",
"version": "2.7.50",
"exports": {
".": "./index.js",
"./data-uri": "./lib/zip-data-uri.js"
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -9955,7 +9955,7 @@
config: getConfiguration(),
files: new Map(),
filenames: new Set(),
offset: writer.writable.size,
offset: options.offset === UNDEFINED_VALUE ? writer.writable.size : options.offset,
pendingEntriesSize: 0,
pendingAddFileCalls: new Set(),
bufferedWrites: 0
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 @@ -4100,7 +4100,7 @@
config: getConfiguration(),
files: new Map(),
filenames: new Set(),
offset: writer.writable.size,
offset: options.offset === UNDEFINED_VALUE ? writer.writable.size : options.offset,
pendingEntriesSize: 0,
pendingAddFileCalls: new Set(),
bufferedWrites: 0
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 @@ -8323,7 +8323,7 @@
config: getConfiguration(),
files: new Map(),
filenames: new Set(),
offset: writer.writable.size,
offset: options.offset === UNDEFINED_VALUE ? writer.writable.size : options.offset,
pendingEntriesSize: 0,
pendingAddFileCalls: new Set(),
bufferedWrites: 0
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.

2 changes: 1 addition & 1 deletion dist/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -4100,7 +4100,7 @@
config: getConfiguration(),
files: new Map(),
filenames: new Set(),
offset: writer.writable.size,
offset: options.offset === UNDEFINED_VALUE ? writer.writable.size : options.offset,
pendingEntriesSize: 0,
pendingAddFileCalls: new Set(),
bufferedWrites: 0
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 @@ -9949,7 +9949,7 @@ class ZipWriter {
config: getConfiguration(),
files: new Map(),
filenames: new Set(),
offset: writer.writable.size,
offset: options.offset === UNDEFINED_VALUE ? writer.writable.size : options.offset,
pendingEntriesSize: 0,
pendingAddFileCalls: new Set(),
bufferedWrites: 0
Expand Down
2 changes: 1 addition & 1 deletion index.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, Deno and Node.js",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.7.49",
"version": "2.7.50",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit 1631a5b

Please sign in to comment.