elero-usb-transmitter-client 1.1.1 → 1.1.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/README.md +8 -0
- package/dist/src/cli.js +0 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -84,6 +84,14 @@ await client.close()
|
|
|
84
84
|
|
|
85
85
|
## Changelog
|
|
86
86
|
|
|
87
|
+
### 1.1.3
|
|
88
|
+
|
|
89
|
+
- Moved `commander` and `inquirer` to `dependencies` (fix runtime error)
|
|
90
|
+
|
|
91
|
+
### 1.1.2
|
|
92
|
+
|
|
93
|
+
- Fix CLI entry point name in `package.json`
|
|
94
|
+
|
|
87
95
|
### 1.1.1
|
|
88
96
|
|
|
89
97
|
- Fixed `responseBytes are null` error by handling fragmented serial packets
|
package/dist/src/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elero-usb-transmitter-client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"build": "tsc",
|
|
10
10
|
"setup": "npm install"
|
|
11
11
|
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"elero-usb-transmitter-client": "./dist/src/cli.js",
|
|
14
|
+
"elero-cli": "./dist/src/cli.js"
|
|
15
|
+
},
|
|
12
16
|
"repository": {
|
|
13
17
|
"type": "git",
|
|
14
18
|
"url": "git+https://github.com/marc2016/elero-usb-transmitter-client.git"
|
|
@@ -27,12 +31,10 @@
|
|
|
27
31
|
"@types/serialport": "^8.0.1",
|
|
28
32
|
"@typescript-eslint/eslint-plugin": "^2.23.0",
|
|
29
33
|
"@typescript-eslint/parser": "^2.23.0",
|
|
30
|
-
"commander": "^14.0.2",
|
|
31
34
|
"eslint": "^6.8.0",
|
|
32
35
|
"eslint-config-google": "^0.14.0",
|
|
33
36
|
"eslint-config-prettier": "^6.10.1",
|
|
34
37
|
"eslint-plugin-prettier": "^3.1.2",
|
|
35
|
-
"inquirer": "^8.2.7",
|
|
36
38
|
"jest": "^24.9.0",
|
|
37
39
|
"prettier": "^2.0.2",
|
|
38
40
|
"ts-jest": "^24.2.0",
|
|
@@ -40,6 +42,8 @@
|
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"async-mutex": "^0.2.4",
|
|
45
|
+
"commander": "^14.0.2",
|
|
46
|
+
"inquirer": "^8.2.7",
|
|
43
47
|
"lodash": "^4.17.15",
|
|
44
48
|
"serialport": "^13.0.0"
|
|
45
49
|
}
|