Skip to content

Commit

Permalink
bump yup version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed May 28, 2024
1 parent 294604c commit 969f658
Show file tree
Hide file tree
Showing 15 changed files with 83 additions and 83 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@zip-js/zip-js",
"version": "2.7.44",
"version": "2.7.45",
"exports": "./index.js"
}
2 changes: 1 addition & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -10156,7 +10156,7 @@
zip64DiskNumberStart,
password,
rawPassword,
level: !useCompressionStream && zipWriter.config.CompressionStream === UNDEFINED_VALUE ? 0 : level,
level: !useCompressionStream && (zipWriter.config.CompressionStream === UNDEFINED_VALUE && zipWriter.config.CompressionStreamNative === UNDEFINED_VALUE) ? 0 : level,
useWebWorkers,
encryptionStrength,
extendedTimestamp,
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 @@ -4301,7 +4301,7 @@
zip64DiskNumberStart,
password,
rawPassword,
level: !useCompressionStream && zipWriter.config.CompressionStream === UNDEFINED_VALUE ? 0 : level,
level: !useCompressionStream && (zipWriter.config.CompressionStream === UNDEFINED_VALUE && zipWriter.config.CompressionStreamNative === UNDEFINED_VALUE) ? 0 : level,
useWebWorkers,
encryptionStrength,
extendedTimestamp,
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 @@ -8524,7 +8524,7 @@
zip64DiskNumberStart,
password,
rawPassword,
level: !useCompressionStream && zipWriter.config.CompressionStream === UNDEFINED_VALUE ? 0 : level,
level: !useCompressionStream && (zipWriter.config.CompressionStream === UNDEFINED_VALUE && zipWriter.config.CompressionStreamNative === UNDEFINED_VALUE) ? 0 : level,
useWebWorkers,
encryptionStrength,
extendedTimestamp,
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 @@ -4301,7 +4301,7 @@
zip64DiskNumberStart,
password,
rawPassword,
level: !useCompressionStream && zipWriter.config.CompressionStream === UNDEFINED_VALUE ? 0 : level,
level: !useCompressionStream && (zipWriter.config.CompressionStream === UNDEFINED_VALUE && zipWriter.config.CompressionStreamNative === UNDEFINED_VALUE) ? 0 : level,
useWebWorkers,
encryptionStrength,
extendedTimestamp,
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 @@ -10150,7 +10150,7 @@ async function addFile(zipWriter, name, reader, options) {
zip64DiskNumberStart,
password,
rawPassword,
level: !useCompressionStream && zipWriter.config.CompressionStream === UNDEFINED_VALUE ? 0 : level,
level: !useCompressionStream && (zipWriter.config.CompressionStream === UNDEFINED_VALUE && zipWriter.config.CompressionStreamNative === UNDEFINED_VALUE) ? 0 : level,
useWebWorkers,
encryptionStrength,
extendedTimestamp,
Expand Down
2 changes: 1 addition & 1 deletion index.min.js

Large diffs are not rendered by default.

138 changes: 69 additions & 69 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.44",
"version": "2.7.45",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit 969f658

Please sign in to comment.