ソースを参照

Stops compacting single files w/ multiple roots

main
Eric Amodio 4年前
コミット
1db3b01a10
1個のファイルの変更1行の追加4行の削除
  1. +1
    -4
      src/system/array.ts

+ 1
- 4
src/system/array.ts ファイルの表示

@ -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;

読み込み中…
キャンセル
保存