@thi.ng/geom 6.1.4 → 6.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +8 -2
  3. package/package.json +29 -29
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-27T09:53:45Z
3
+ - **Last updated**: 2024-04-11T12:32:44Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
10
+ > This is one of 192 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -190,7 +190,13 @@ packages (which are more low-level, lightweight and usable by themselves too):
190
190
  yarn add @thi.ng/geom
191
191
  ```
192
192
 
193
- ES module import:
193
+ ESM import:
194
+
195
+ ```ts
196
+ import * as geom from "@thi.ng/geom";
197
+ ```
198
+
199
+ Browser ESM import:
194
200
 
195
201
  ```html
196
202
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/geom"></script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom",
3
- "version": "6.1.4",
3
+ "version": "6.1.6",
4
4
  "description": "Functional, polymorphic API for 2D geometry types & SVG generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -37,33 +37,33 @@
37
37
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.9.31",
41
- "@thi.ng/arrays": "^2.9.1",
42
- "@thi.ng/associative": "^6.3.54",
43
- "@thi.ng/checks": "^3.5.5",
44
- "@thi.ng/defmulti": "^3.0.34",
45
- "@thi.ng/equiv": "^2.1.53",
46
- "@thi.ng/errors": "^2.5.2",
47
- "@thi.ng/geom-api": "^4.0.4",
48
- "@thi.ng/geom-arc": "^2.1.126",
49
- "@thi.ng/geom-clip-line": "^2.3.83",
50
- "@thi.ng/geom-clip-poly": "^2.1.125",
51
- "@thi.ng/geom-closest-point": "^2.1.121",
52
- "@thi.ng/geom-hull": "^2.1.121",
53
- "@thi.ng/geom-isec": "^3.0.4",
54
- "@thi.ng/geom-poly-utils": "^2.3.109",
55
- "@thi.ng/geom-resample": "^2.3.47",
56
- "@thi.ng/geom-splines": "^2.2.100",
57
- "@thi.ng/geom-subdiv-curve": "^2.1.125",
58
- "@thi.ng/geom-tessellate": "^2.1.126",
59
- "@thi.ng/hiccup": "^5.1.26",
60
- "@thi.ng/hiccup-svg": "^5.2.31",
61
- "@thi.ng/math": "^5.10.8",
62
- "@thi.ng/matrices": "^2.3.31",
63
- "@thi.ng/random": "^3.7.1",
64
- "@thi.ng/strings": "^3.7.28",
65
- "@thi.ng/transducers": "^8.9.18",
66
- "@thi.ng/vectors": "^7.10.25"
40
+ "@thi.ng/api": "^8.10.1",
41
+ "@thi.ng/arrays": "^2.9.3",
42
+ "@thi.ng/associative": "^6.3.56",
43
+ "@thi.ng/checks": "^3.6.1",
44
+ "@thi.ng/defmulti": "^3.0.36",
45
+ "@thi.ng/equiv": "^2.1.55",
46
+ "@thi.ng/errors": "^2.5.4",
47
+ "@thi.ng/geom-api": "^4.0.6",
48
+ "@thi.ng/geom-arc": "^2.1.128",
49
+ "@thi.ng/geom-clip-line": "^2.3.85",
50
+ "@thi.ng/geom-clip-poly": "^2.1.127",
51
+ "@thi.ng/geom-closest-point": "^2.1.123",
52
+ "@thi.ng/geom-hull": "^2.1.123",
53
+ "@thi.ng/geom-isec": "^3.0.6",
54
+ "@thi.ng/geom-poly-utils": "^2.3.111",
55
+ "@thi.ng/geom-resample": "^2.3.49",
56
+ "@thi.ng/geom-splines": "^2.2.102",
57
+ "@thi.ng/geom-subdiv-curve": "^2.1.127",
58
+ "@thi.ng/geom-tessellate": "^2.1.128",
59
+ "@thi.ng/hiccup": "^5.1.28",
60
+ "@thi.ng/hiccup-svg": "^5.2.33",
61
+ "@thi.ng/math": "^5.10.10",
62
+ "@thi.ng/matrices": "^2.3.33",
63
+ "@thi.ng/random": "^3.7.3",
64
+ "@thi.ng/strings": "^3.7.30",
65
+ "@thi.ng/transducers": "^9.0.1",
66
+ "@thi.ng/vectors": "^7.10.27"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@microsoft/api-extractor": "^7.43.0",
@@ -399,5 +399,5 @@
399
399
  ],
400
400
  "year": 2013
401
401
  },
402
- "gitHead": "ce5ae2a322d50a7ce8ecccbd94fa55c496ba04fd\n"
402
+ "gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
403
403
  }