hb-rpi-tools 1.0.4 → 1.0.5
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/lib/RpiTool.js +1 -9
- package/package.json +2 -2
package/lib/RpiTool.js
CHANGED
|
@@ -363,15 +363,7 @@ class RpiTool extends CommandLineTool {
|
|
|
363
363
|
}
|
|
364
364
|
parser
|
|
365
365
|
.help('h', 'help', help.rpi)
|
|
366
|
-
.
|
|
367
|
-
if (this.vdebugEnabled) {
|
|
368
|
-
this.setOptions({ vvdebug: true })
|
|
369
|
-
} else if (this.debugEnabled) {
|
|
370
|
-
this.setOptions({ vdebug: true })
|
|
371
|
-
} else {
|
|
372
|
-
this.setOptions({ debug: true, chalk: true })
|
|
373
|
-
}
|
|
374
|
-
})
|
|
366
|
+
.debug('D', 'debug', this)
|
|
375
367
|
.version('V', 'version')
|
|
376
368
|
.option('H', 'host', (value) => {
|
|
377
369
|
const { hostname, port } = OptionParser.toHost('host', value, false, true)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "hb-rpi-tools",
|
|
3
3
|
"description": "Homebridge RPi Tools",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"raspberrypi",
|
|
8
8
|
"raspberry",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": "^24||^22"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"hb-lib-tools": "~3.0.
|
|
31
|
+
"hb-lib-tools": "~3.0.6"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"prepare": "standard && rm -rf out && jsdoc -c jsdoc.json",
|