Skip to content

Commit

Permalink
build(viz): update deps & imports (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jul 20, 2024
1 parent 3902356 commit 12c8bf7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/viz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"dependencies": {
"@thi.ng/api": "^8.11.6",
"@thi.ng/arrays": "^2.9.11",
"@thi.ng/associative": "^6.3.65",
"@thi.ng/checks": "^3.6.8",
"@thi.ng/math": "^5.11.4",
"@thi.ng/object-utils": "^1.0.0",
"@thi.ng/strings": "^3.8.0",
"@thi.ng/transducers": "^9.0.10"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/viz/src/axis/lens.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import { lens, mix } from "@thi.ng/math/mix";
import { safeDiv } from "@thi.ng/math/safe-div";
import { mergeDeepObj } from "@thi.ng/object-utils/merge-deep";
import type {
AxisSpec,
Domain,
Expand Down
2 changes: 1 addition & 1 deletion packages/viz/src/axis/linear.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import { fit } from "@thi.ng/math/fit";
import { inRange } from "@thi.ng/math/interval";
import { roundTo } from "@thi.ng/math/prec";
import { mergeDeepObj } from "@thi.ng/object-utils/merge-deep";
import { filter } from "@thi.ng/transducers/filter";
import { range } from "@thi.ng/transducers/range";
import type {
Expand Down
2 changes: 1 addition & 1 deletion packages/viz/src/axis/log.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { FnN, FnU3 } from "@thi.ng/api";
import { mergeDeepObj } from "@thi.ng/associative/merge-deep";
import { inRange } from "@thi.ng/math/interval";
import { mix } from "@thi.ng/math/mix";
import { mergeDeepObj } from "@thi.ng/object-utils/merge-deep";
import { comp } from "@thi.ng/transducers/comp";
import { filter } from "@thi.ng/transducers/filter";
import { iterator } from "@thi.ng/transducers/iterator";
Expand Down

0 comments on commit 12c8bf7

Please sign in to comment.