Skip to content

Commit

Permalink
build(geom): 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 be0ba70 commit 90148b2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/geom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"@thi.ng/adjacency": "^2.5.56",
"@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/defmulti": "^3.0.44",
"@thi.ng/equiv": "^2.1.62",
Expand All @@ -60,6 +59,7 @@
"@thi.ng/hiccup-svg": "^5.3.4",
"@thi.ng/math": "^5.11.4",
"@thi.ng/matrices": "^2.4.4",
"@thi.ng/object-utils": "^1.0.0",
"@thi.ng/random": "^3.8.5",
"@thi.ng/strings": "^3.8.0",
"@thi.ng/transducers": "^9.0.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/geom/src/apply-transforms.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { withoutKeysObj } from "@thi.ng/associative/without-keys";
import type { MultiFn1 } from "@thi.ng/defmulti";
import { DEFAULT, defmulti } from "@thi.ng/defmulti/defmulti";
import { withoutKeysObj } from "@thi.ng/object-utils/without-keys";
import type { IShape, IShape2, IShape3 } from "./api.js";
import type { Arc } from "./api/arc.js";
import type { Circle } from "./api/circle.js";
Expand Down
6 changes: 3 additions & 3 deletions packages/geom/src/as-svg.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { withoutKeysObj } from "@thi.ng/associative/without-keys";
import type { Attribs, IShape } from "./api.js";
import type { NumOrString } from "@thi.ng/api";
import { convertTree } from "@thi.ng/hiccup-svg/convert";
import { ff } from "@thi.ng/hiccup-svg/format";
import { svg } from "@thi.ng/hiccup-svg/svg";
import { serialize } from "@thi.ng/hiccup/serialize";
import { withoutKeysObj } from "@thi.ng/object-utils/without-keys";
import type { Attribs, IShape } from "./api.js";
import { bounds } from "./bounds.js";
import { __collBounds } from "./internal/bounds.js";
import type { NumOrString } from "@thi.ng/api";

export interface SVGDocAttribs extends Attribs {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/geom/src/internal/copy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// thing:export
import { withoutKeysObj } from "@thi.ng/associative/without-keys";
import { withoutKeysObj } from "@thi.ng/object-utils/without-keys";
import type { Vec } from "@thi.ng/vectors";
import { copy, copyVectors } from "@thi.ng/vectors/copy";
import type {
Expand Down

0 comments on commit 90148b2

Please sign in to comment.