homebridge-lib 8.1.3 → 8.1.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/UiServer.js +3 -3
- package/package.json +5 -5
package/lib/UiServer.js
CHANGED
|
@@ -136,7 +136,7 @@ class UiServer extends HomebridgePluginUiServer {
|
|
|
136
136
|
* @param {...string} args - Arguments to the printf-style message.
|
|
137
137
|
*/
|
|
138
138
|
debug (format, ...args) {
|
|
139
|
-
this._log({ chalk: chalk.
|
|
139
|
+
this._log({ chalk: chalk.gray }, format, ...args)
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
/** Print error message to stdout.
|
|
@@ -163,7 +163,7 @@ class UiServer extends HomebridgePluginUiServer {
|
|
|
163
163
|
* @param {...string} args - Arguments to the printf-style message.
|
|
164
164
|
*/
|
|
165
165
|
vdebug (format, ...args) {
|
|
166
|
-
this._log({ chalk: chalk.
|
|
166
|
+
this._log({ chalk: chalk.gray }, format, ...args)
|
|
167
167
|
}
|
|
168
168
|
|
|
169
169
|
/** Print very verbose debug message to stdout.
|
|
@@ -172,7 +172,7 @@ class UiServer extends HomebridgePluginUiServer {
|
|
|
172
172
|
* @param {...string} args - Arguments to the printf-style message.
|
|
173
173
|
*/
|
|
174
174
|
vvdebug (format, ...args) {
|
|
175
|
-
this._log({ chalk: chalk.
|
|
175
|
+
this._log({ chalk: chalk.gray }, format, ...args)
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
/** Print warning message to stdout.
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"ebaauw"
|
|
7
7
|
],
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
|
-
"version": "8.1.
|
|
9
|
+
"version": "8.1.5",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"homekit",
|
|
12
12
|
"homebridge"
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"upnp": "cli/upnp.js"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
|
-
"homebridge": "^2.
|
|
33
|
-
"node": "24.
|
|
32
|
+
"homebridge": "^2.4.0",
|
|
33
|
+
"node": "24.20.0||^24||^22"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@homebridge/plugin-ui-utils": "~2.2.
|
|
37
|
-
"hb-lib-tools": "~3.0.
|
|
36
|
+
"@homebridge/plugin-ui-utils": "~2.2.6",
|
|
37
|
+
"hb-lib-tools": "~3.0.11"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"prepare": "standard && rm -rf out && jsdoc -c jsdoc.json",
|