@iobroker/js-controller-cli 4.0.3 → 4.0.5-alpha.2-20220208-ac4cf51e

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.
@@ -6,11 +6,11 @@ const { tools } = require('@iobroker/js-controller-common');
6
6
  const fs = require('fs');
7
7
  const path = require('path');
8
8
 
9
- const controllerIoPackPath = path.join(__dirname, '../../io-package.json');
9
+ const controllerIoPackPath = require.resolve('iobroker.js-controller/io-package.json');
10
10
 
11
11
  /** Command iobroker plugin <enable/disable/status> <pluginname> [--host this/hostname] ... */
12
12
  module.exports = class CLIPlugin extends CLICommand {
13
- /** @param {import('./cliCommand').CLICommandOptions} options */
13
+ /** @param {CLICommandOptions} options */
14
14
  constructor(options) {
15
15
  super(options);
16
16
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@iobroker/js-controller-cli",
3
- "version": "4.0.3",
3
+ "version": "4.0.5-alpha.2-20220208-ac4cf51e",
4
4
  "engines": {
5
5
  "node": ">=12.0.0"
6
6
  },
7
7
  "dependencies": {
8
- "@iobroker/js-controller-common": "4.0.3",
9
- "@iobroker/js-controller-common-db": "4.0.3",
8
+ "@iobroker/js-controller-common": "4.0.5-alpha.2-20220208-ac4cf51e",
9
+ "@iobroker/js-controller-common-db": "4.0.5-alpha.2-20220208-ac4cf51e",
10
10
  "chokidar": "^3.5.3",
11
11
  "daemonize2": "^0.4.2",
12
12
  "debug": "^4.3.3",
@@ -38,5 +38,5 @@
38
38
  "lib/",
39
39
  "index.js"
40
40
  ],
41
- "gitHead": "79a76a082db91399d0e432ef02bf2981a6739107"
41
+ "gitHead": "164e97c24ac7094a4442a3d44268e2b480db1171"
42
42
  }