elero-usb-transmitter-client 1.1.1 → 1.1.2

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -84,6 +84,10 @@ await client.close()
84
84
 
85
85
  ## Changelog
86
86
 
87
+ ### 1.1.2
88
+
89
+ - Fix CLI entry point name in `package.json`
90
+
87
91
  ### 1.1.1
88
92
 
89
93
  - Fixed `responseBytes are null` error by handling fragmented serial packets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elero-usb-transmitter-client",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
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"