matterbridge 3.2.1-dev-20250802-741949b → 3.2.1-dev-20250803-c70121e
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/dist/matterbridge.js +1 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/matterbridge.js
CHANGED
|
@@ -106,7 +106,6 @@ export class Matterbridge extends EventEmitter {
|
|
|
106
106
|
nodeContext;
|
|
107
107
|
hasCleanupStarted = false;
|
|
108
108
|
initialized = false;
|
|
109
|
-
execRunningCount = 0;
|
|
110
109
|
startMatterInterval;
|
|
111
110
|
startMatterIntervalMs = 1000;
|
|
112
111
|
checkUpdateInterval;
|
|
@@ -884,11 +883,10 @@ export class Matterbridge extends EventEmitter {
|
|
|
884
883
|
if (this.nodeContext)
|
|
885
884
|
this.globalModulesDirectory = this.matterbridgeInformation.globalModulesDirectory = await this.nodeContext.get('globalModulesDirectory', '');
|
|
886
885
|
if (this.globalModulesDirectory === '') {
|
|
886
|
+
this.log.debug(`Getting global node_modules directory...`);
|
|
887
887
|
try {
|
|
888
888
|
const { getGlobalNodeModules } = await import('./utils/network.js');
|
|
889
|
-
this.execRunningCount++;
|
|
890
889
|
this.matterbridgeInformation.globalModulesDirectory = this.globalModulesDirectory = await getGlobalNodeModules();
|
|
891
|
-
this.execRunningCount--;
|
|
892
890
|
this.log.debug(`Global node_modules Directory: ${this.globalModulesDirectory}`);
|
|
893
891
|
await this.nodeContext?.set('globalModulesDirectory', this.globalModulesDirectory);
|
|
894
892
|
}
|
|
@@ -900,9 +898,7 @@ export class Matterbridge extends EventEmitter {
|
|
|
900
898
|
this.log.debug(`Checking global node_modules directory: ${this.globalModulesDirectory}`);
|
|
901
899
|
try {
|
|
902
900
|
const { getGlobalNodeModules } = await import('./utils/network.js');
|
|
903
|
-
this.execRunningCount++;
|
|
904
901
|
this.matterbridgeInformation.globalModulesDirectory = this.globalModulesDirectory = await getGlobalNodeModules();
|
|
905
|
-
this.execRunningCount--;
|
|
906
902
|
this.log.debug(`Global node_modules Directory: ${this.globalModulesDirectory}`);
|
|
907
903
|
await this.nodeContext?.set('globalModulesDirectory', this.globalModulesDirectory);
|
|
908
904
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.2.1-dev-
|
|
3
|
+
"version": "3.2.1-dev-20250803-c70121e",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.2.1-dev-
|
|
9
|
+
"version": "3.2.1-dev-20250803-c70121e",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.3",
|
package/package.json
CHANGED