@rhizomatics/signalk-bluetti-plugin 1.0.5-alpha → 1.0.6-alpha
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/scanner.js +2 -2
- package/package.json +1 -1
package/lib/scanner.js
CHANGED
|
@@ -27,9 +27,9 @@ class Scanner extends EventEmitter {
|
|
|
27
27
|
return new Promise((resolve, reject) => {
|
|
28
28
|
let noble;
|
|
29
29
|
try {
|
|
30
|
-
noble = require('@
|
|
30
|
+
noble = require('@stoprocent/noble');
|
|
31
31
|
} catch (e) {
|
|
32
|
-
return reject(new Error('@
|
|
32
|
+
return reject(new Error('@stoprocent/noble not installed — run: npm install'));
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
this._noble = noble;
|