@thi.ng/geom-clip-line 2.0.0 → 2.0.1

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@2.0.0...@thi.ng/geom-clip-line@2.0.1) (2021-10-13)
7
+
8
+ **Note:** Version bump only for package @thi.ng/geom-clip-line
9
+
10
+
11
+
12
+
13
+
6
14
  # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-clip-line@1.2.45...@thi.ng/geom-clip-line@2.0.0) (2021-10-12)
7
15
 
8
16
 
package/README.md CHANGED
@@ -52,10 +52,11 @@ ES module import:
52
52
 
53
53
  [Skypack documentation](https://docs.skypack.dev/)
54
54
 
55
- For NodeJS (v14.6+):
55
+ For Node.js REPL:
56
56
 
57
57
  ```text
58
- node --experimental-specifier-resolution=node --experimental-repl-await
58
+ # with flag only for < v16
59
+ node --experimental-repl-await
59
60
 
60
61
  > const geomClipLine = await import("@thi.ng/geom-clip-line");
61
62
  ```
package/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from "./clip-poly";
2
- export * from "./liang-barsky";
1
+ export * from "./clip-poly.js";
2
+ export * from "./liang-barsky.js";
3
3
  //# sourceMappingURL=index.d.ts.map
package/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./clip-poly";
2
- export * from "./liang-barsky";
1
+ export * from "./clip-poly.js";
2
+ export * from "./liang-barsky.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/geom-clip-line",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "2D line clipping (Liang-Barsky)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,12 +34,12 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.0.0",
38
- "@thi.ng/geom-isec": "^2.0.0",
39
- "@thi.ng/vectors": "^7.0.0"
37
+ "@thi.ng/api": "^8.0.1",
38
+ "@thi.ng/geom-isec": "^2.0.1",
39
+ "@thi.ng/vectors": "^7.0.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@thi.ng/testament": "^0.1.0"
42
+ "@thi.ng/testament": "^0.1.1"
43
43
  },
44
44
  "keywords": [
45
45
  "2d",
@@ -54,6 +54,9 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
+ "engines": {
58
+ "node": ">=12.7"
59
+ },
57
60
  "files": [
58
61
  "*.js",
59
62
  "*.d.ts"
@@ -76,5 +79,5 @@
76
79
  ],
77
80
  "year": 2013
78
81
  },
79
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
82
+ "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
80
83
  }