@thi.ng/axidraw 1.1.0 → 1.1.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 +1 -1
- package/axidraw.d.ts +2 -2
- package/axidraw.js +1 -1
- package/package.json +16 -16
- package/palettes.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/axidraw.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IReset } from "@thi.ng/api";
|
|
2
|
-
import { ReadonlyVec, Vec, VecPair } from "@thi.ng/vectors/api";
|
|
3
|
-
import { AxiDrawOpts, DrawCommand, ISerial, Metrics } from "./api.js";
|
|
2
|
+
import { type ReadonlyVec, type Vec, type VecPair } from "@thi.ng/vectors/api";
|
|
3
|
+
import { type AxiDrawOpts, type DrawCommand, type ISerial, type Metrics } from "./api.js";
|
|
4
4
|
export declare const DEFAULT_OPTS: AxiDrawOpts;
|
|
5
5
|
export declare class AxiDraw implements IReset {
|
|
6
6
|
serial: ISerial;
|
package/axidraw.js
CHANGED
|
@@ -9,7 +9,7 @@ import { DIN_A3_LANDSCAPE } from "@thi.ng/units/constants/paper-sizes";
|
|
|
9
9
|
import { convert, div, Quantity } from "@thi.ng/units/unit";
|
|
10
10
|
import { inch } from "@thi.ng/units/units/length";
|
|
11
11
|
import { abs2 } from "@thi.ng/vectors/abs";
|
|
12
|
-
import { ZERO2 } from "@thi.ng/vectors/api";
|
|
12
|
+
import { ZERO2, } from "@thi.ng/vectors/api";
|
|
13
13
|
import { clamp2 } from "@thi.ng/vectors/clamp";
|
|
14
14
|
import { maddN2 } from "@thi.ng/vectors/maddn";
|
|
15
15
|
import { mag } from "@thi.ng/vectors/mag";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/axidraw",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Minimal AxiDraw plotter/drawing machine controller for Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.7.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/compose": "^2.1.
|
|
40
|
-
"@thi.ng/date": "^2.4.
|
|
41
|
-
"@thi.ng/errors": "^2.2.
|
|
42
|
-
"@thi.ng/logger": "^1.4.
|
|
43
|
-
"@thi.ng/math": "^5.4.
|
|
44
|
-
"@thi.ng/transducers": "^8.4.
|
|
45
|
-
"@thi.ng/units": "^0.4.
|
|
46
|
-
"@thi.ng/vectors": "^7.6.
|
|
37
|
+
"@thi.ng/api": "^8.7.5",
|
|
38
|
+
"@thi.ng/checks": "^3.3.11",
|
|
39
|
+
"@thi.ng/compose": "^2.1.30",
|
|
40
|
+
"@thi.ng/date": "^2.4.10",
|
|
41
|
+
"@thi.ng/errors": "^2.2.14",
|
|
42
|
+
"@thi.ng/logger": "^1.4.12",
|
|
43
|
+
"@thi.ng/math": "^5.4.6",
|
|
44
|
+
"@thi.ng/transducers": "^8.4.1",
|
|
45
|
+
"@thi.ng/units": "^0.4.1",
|
|
46
|
+
"@thi.ng/vectors": "^7.6.10",
|
|
47
47
|
"serialport": "^10.5.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@microsoft/api-extractor": "^7.34.4",
|
|
51
|
-
"@thi.ng/testament": "^0.3.
|
|
52
|
-
"rimraf": "^4.4.
|
|
51
|
+
"@thi.ng/testament": "^0.3.14",
|
|
52
|
+
"rimraf": "^4.4.1",
|
|
53
53
|
"tools": "^0.0.1",
|
|
54
|
-
"typedoc": "^0.23.
|
|
55
|
-
"typescript": "^
|
|
54
|
+
"typedoc": "^0.23.28",
|
|
55
|
+
"typescript": "^5.0.2"
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
58
58
|
"2d",
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"status": "alpha",
|
|
116
116
|
"year": 2022
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
|
|
119
119
|
}
|
package/palettes.d.ts
CHANGED