Skip to content

Commit

Permalink
refactor(ecs): update imports (transducers)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 20, 2021
1 parent 441d708 commit e940647
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ecs/src/ecs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { isString } from "@thi.ng/checks/is-string";
import { IDGen } from "@thi.ng/idgen";
import type { IMemPoolArray } from "@thi.ng/malloc";
import { NativePool } from "@thi.ng/malloc/native";
import { filter } from "@thi.ng/transducers/xform/filter";
import { filter } from "@thi.ng/transducers/filter";
import type {
ComponentID,
ECSOpts,
Expand Down
2 changes: 1 addition & 1 deletion packages/ecs/src/groups/group.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Event, FnO2, FnO3, IID } from "@thi.ng/api";
import { assert } from "@thi.ng/api/assert";
import { intersectionR } from "@thi.ng/associative/intersection";
import { map } from "@thi.ng/transducers/map";
import { transduce } from "@thi.ng/transducers/transduce";
import { map } from "@thi.ng/transducers/xform/map";
import type {
ComponentID,
GroupInfo,
Expand Down

0 comments on commit e940647

Please sign in to comment.