Browse Source

Stops compacting single files w/ multiple roots

main
Eric Amodio 4 years ago
parent
commit
1db3b01a10
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      src/system/array.ts

+ 1
- 4
src/system/array.ts View File

@ -174,10 +174,7 @@ export namespace Arrays {
if (!isRoot && children.length === 1) {
const child = children[0];
if (
root.value === undefined &&
(child.value === undefined || canCompact === undefined || canCompact(child.value))
) {
if (child.value === undefined || canCompact?.(child.value)) {
root.name = joinPath(root.name, child.name);
root.relativePath = child.relativePath;
root.children = child.children;

Loading…
Cancel
Save