node-red-contrib-homekit-bridged 2.0.0-dev.2 → 2.0.0-dev.4

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.
@@ -334,7 +334,8 @@ module.exports = (node) => {
334
334
  ? +node.config.adaptiveLightingOptionsCustomTemperatureAdjustment
335
335
  : undefined
336
336
  };
337
- log.trace(`Configuring Adaptive Lighting with options: ${options}`);
337
+ log.trace(`Configuring Adaptive Lighting with options:`);
338
+ log.trace(JSON.stringify(options));
338
339
  const adaptiveLightingController = new hap_nodejs_1.AdaptiveLightingController(node.service, options);
339
340
  adaptiveLightingController.on('update', () => {
340
341
  const activeAdaptiveLightingTransition = {
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "node-red-contrib-homekit-bridged",
3
- "version": "2.0.0-dev.2",
3
+ "version": "2.0.0-dev.4",
4
4
  "description": "Node-RED nodes to simulate Apple HomeKit devices.",
5
5
  "main": "build/nodes/nrchkb.js",
6
6
  "scripts": {
7
7
  "build": "npm run clean && tsc",
8
8
  "clean": "del-cli \"build/lib\" \"build/**/*.js\"",
9
9
  "test": "vitest run",
10
+ "test:ci": "vitest run --no-file-parallelism",
10
11
  "test:watch": "vitest",
11
12
  "format": "npx @biomejs/biome check --write",
12
13
  "lint": "npx @biomejs/biome check",