Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gildas-lormeau committed Feb 24, 2023
1 parent 45f4087 commit aeecfe9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
5 changes: 3 additions & 2 deletions dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -10258,8 +10258,9 @@
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
const clone = child.clone(deepClone);
clone.parent = zipEntry;
return clone;
});
}
return clone;
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs-full.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5034,8 +5034,9 @@
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
const clone = child.clone(deepClone);
clone.parent = zipEntry;
return clone;
});
}
return clone;
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10254,8 +10254,9 @@ class ZipDirectoryEntry extends ZipEntry {
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
const clone = child.clone(deepClone);
clone.parent = zipEntry;
return clone;
});
}
return clone;
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.71",
"version": "2.6.72",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit aeecfe9

Please sign in to comment.