소스 검색

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;

불러오는 중...
취소
저장