Skip to content

Commit 7c4cdb2

Browse files
authored
chore: re-remove cell-map, it is now doc-map (#528)
re-remove cell-map, it is now doc-map
1 parent 53c61e3 commit 7c4cdb2

File tree

2 files changed

+7
-199
lines changed

2 files changed

+7
-199
lines changed

typescript/packages/common-runner/src/cell-map.ts

Lines changed: 0 additions & 190 deletions
This file was deleted.

typescript/packages/common-runner/src/storage.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import {
2-
type DocImpl,
3-
type DocLink,
4-
isDoc,
5-
isDocLink,
6-
} from "./doc.ts";
1+
import { type DocImpl, type DocLink, isDoc, isDocLink } from "./doc.ts";
72
import { type AddCancel, type Cancel, useCancelGroup } from "./cancel.ts";
83
import { Cell, isCell } from "./cell.ts";
9-
import { type EntityId, getDocByEntityId } from "./cell-map.ts";
10-
import { getDocLinkOrThrow, isQueryResultForDereferencing } from "./query-result-proxy.ts";
4+
import { type EntityId, getDocByEntityId } from "./doc-map.ts";
5+
import {
6+
getDocLinkOrThrow,
7+
isQueryResultForDereferencing,
8+
} from "./query-result-proxy.ts";
119
import { idle } from "./scheduler.ts";
1210
import { Space } from "./space.ts";
1311
import { isStatic, markAsStatic } from "@commontools/builder";
@@ -584,7 +582,7 @@ class StorageImpl implements Storage {
584582
}
585583
}
586584
log(
587-
() => ["loading", [...loading].map((c) => JSON.stringify(c.entityId))]
585+
() => ["loading", [...loading].map((c) => JSON.stringify(c.entityId))],
588586
);
589587
log(() => [
590588
"docIsLoading",

0 commit comments

Comments
 (0)