@thi.ng/axidraw 0.2.2 → 0.2.3

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
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-12-16T12:52:25Z
3
+ - **Last updated**: 2022-12-22T21:47:07Z
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
@@ -29,7 +29,7 @@ This project is part of the
29
29
 
30
30
  ## About
31
31
 
32
- Minimal AxiDraw plotter/drawing machine controller for Node.js
32
+ Minimal AxiDraw plotter/drawing machine controller for Node.js.
33
33
 
34
34
  This package provides a super-lightweight alternative to control an [AxiDraw
35
35
  plotter](https://axidraw.com/) directly from Node.js, using a small custom set
@@ -141,14 +141,6 @@ control is in the "continue" state.
141
141
  yarn add @thi.ng/axidraw
142
142
  ```
143
143
 
144
- ES module import:
145
-
146
- ```html
147
- <script type="module" src="https://cdn.skypack.dev/@thi.ng/axidraw"></script>
148
- ```
149
-
150
- [Skypack documentation](https://docs.skypack.dev/)
151
-
152
144
  For Node.js REPL:
153
145
 
154
146
  ```js
@@ -160,6 +152,7 @@ Package sizes (brotli'd, pre-treeshake): ESM: 1.67 KB
160
152
  ## Dependencies
161
153
 
162
154
  - [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api)
155
+ - [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/develop/packages/checks)
163
156
  - [@thi.ng/compose](https://github.com/thi-ng/umbrella/tree/develop/packages/compose)
164
157
  - [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/develop/packages/errors)
165
158
  - [@thi.ng/logger](https://github.com/thi-ng/umbrella/tree/develop/packages/logger)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/axidraw",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Minimal AxiDraw plotter/drawing machine controller for Node.js",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,17 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.6.1",
38
- "@thi.ng/compose": "^2.1.22",
39
- "@thi.ng/errors": "^2.2.6",
40
- "@thi.ng/logger": "^1.4.5",
41
- "@thi.ng/vectors": "^7.5.28",
37
+ "@thi.ng/api": "^8.6.2",
38
+ "@thi.ng/checks": "^3.3.6",
39
+ "@thi.ng/compose": "^2.1.23",
40
+ "@thi.ng/errors": "^2.2.7",
41
+ "@thi.ng/logger": "^1.4.6",
42
+ "@thi.ng/vectors": "^7.5.29",
42
43
  "serialport": "^10.5.0"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@microsoft/api-extractor": "^7.33.7",
46
- "@thi.ng/testament": "^0.3.7",
47
+ "@thi.ng/testament": "^0.3.8",
47
48
  "rimraf": "^3.0.2",
48
49
  "tools": "^0.0.1",
49
50
  "typedoc": "^0.23.22",
@@ -57,7 +58,7 @@
57
58
  "geometry",
58
59
  "io",
59
60
  "logger",
60
- "node",
61
+ "node-only",
61
62
  "penplotter",
62
63
  "polyline",
63
64
  "serialport",
@@ -94,5 +95,5 @@
94
95
  "status": "alpha",
95
96
  "year": 2022
96
97
  },
97
- "gitHead": "7b2af448da8a63fb21704a79cc4cdf1f3d7d7a64\n"
98
+ "gitHead": "bc6f7f5e2765bb96fe64db804eaf4b2443b47fc6\n"
98
99
  }