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 4d4a149 commit 70c24a2
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
5 changes: 4 additions & 1 deletion dist/zip-fs-full.js
Original file line number Diff line number Diff line change
Expand Up @@ -10257,7 +10257,10 @@
const zipEntry = this;
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => child.clone(deepClone));
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
});
}
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: 4 additions & 1 deletion dist/zip-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5033,7 +5033,10 @@
const zipEntry = this;
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => child.clone(deepClone));
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
});
}
return clone;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/zip-fs.min.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10253,7 +10253,10 @@ class ZipDirectoryEntry extends ZipEntry {
const zipEntry = this;
const clone = new ZipDirectoryEntry(zipEntry.fs, zipEntry.name);
if (deepClone) {
clone.children = zipEntry.children.map(child => child.clone(deepClone));
clone.children = zipEntry.children.map(child => {
child.clone(deepClone);
child.parent = this;
});
}
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.70",
"version": "2.6.71",
"type": "module",
"keywords": [
"zip",
Expand Down

0 comments on commit 70c24a2

Please sign in to comment.