elero-usb-transmitter-client 1.1.2 → 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 CHANGED
@@ -84,6 +84,10 @@ 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
+
87
91
  ### 1.1.2
88
92
 
89
93
  - Fix CLI entry point name in `package.json`
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.2",
3
+ "version": "1.1.3",
4
4
  "description": "",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -31,12 +31,10 @@
31
31
  "@types/serialport": "^8.0.1",
32
32
  "@typescript-eslint/eslint-plugin": "^2.23.0",
33
33
  "@typescript-eslint/parser": "^2.23.0",
34
- "commander": "^14.0.2",
35
34
  "eslint": "^6.8.0",
36
35
  "eslint-config-google": "^0.14.0",
37
36
  "eslint-config-prettier": "^6.10.1",
38
37
  "eslint-plugin-prettier": "^3.1.2",
39
- "inquirer": "^8.2.7",
40
38
  "jest": "^24.9.0",
41
39
  "prettier": "^2.0.2",
42
40
  "ts-jest": "^24.2.0",
@@ -44,6 +42,8 @@
44
42
  },
45
43
  "dependencies": {
46
44
  "async-mutex": "^0.2.4",
45
+ "commander": "^14.0.2",
46
+ "inquirer": "^8.2.7",
47
47
  "lodash": "^4.17.15",
48
48
  "serialport": "^13.0.0"
49
49
  }