@matterbridge/core 3.9.3-dev-20260627-53ee5fe → 3.9.3-dev-20260627-5d60de5

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.
@@ -413,7 +413,7 @@ export class BackendExpress {
413
413
  workerData: {
414
414
  threadName: 'SpawnCommand',
415
415
  command: isBun() ? 'bun' : 'npm',
416
- args: isBun() ? ['install', '-g', filePath, '--production'] : ['install', '-g', filePath, '--omit=dev', '--verbose'],
416
+ args: isBun() ? ['install', '-g', filePath, '--omit=dev'] : ['install', '-g', filePath, '--omit=dev', '--verbose'],
417
417
  packageCommand: 'install',
418
418
  packageName: filename,
419
419
  },
package/dist/frontend.js CHANGED
@@ -800,7 +800,7 @@ export class Frontend extends EventEmitter {
800
800
  workerData: {
801
801
  threadName: 'SpawnCommand',
802
802
  command: isBun() ? 'bun' : 'npm',
803
- args: isBun() ? ['install', '-g', filePath, '--production'] : ['install', '-g', filePath, '--omit=dev', '--verbose'],
803
+ args: isBun() ? ['install', '-g', filePath, '--omit=dev'] : ['install', '-g', filePath, '--omit=dev', '--verbose'],
804
804
  packageCommand: 'install',
805
805
  packageName: filename,
806
806
  },
@@ -2238,7 +2238,7 @@ export class Frontend extends EventEmitter {
2238
2238
  workerData: {
2239
2239
  threadName: 'SpawnCommand',
2240
2240
  command: isBun() ? 'bun' : 'npm',
2241
- args: isBun() ? [command, '-g', packageName, '--production'] : [command, '-g', packageName, '--omit=dev', '--verbose'],
2241
+ args: isBun() ? [command, '-g', packageName, '--omit=dev'] : [command, '-g', packageName, '--omit=dev', '--verbose'],
2242
2242
  packageCommand: command,
2243
2243
  packageName: packageName,
2244
2244
  },
@@ -743,11 +743,11 @@ export class Matterbridge extends EventEmitter {
743
743
  try {
744
744
  if (plugin.private && plugin.tarballPath && fs.existsSync(path.join(this.matterbridgeDirectory, 'uploads', plugin.tarballPath))) {
745
745
  this.log.info(`Plugin ${plg}${plugin.name}${nf} not found. Trying to reinstall it from last tarball...`);
746
- execSync(`${sudo ? 'sudo ' : ''}${isBun() ? 'bun' : 'npm'} install -g ${path.join(this.matterbridgeDirectory, 'uploads', plugin.tarballPath)} ${isBun() ? '--production --silent' : '--no-fund --no-audit --silent --omit=dev'}`);
746
+ execSync(`${sudo ? 'sudo ' : ''}${isBun() ? 'bun' : 'npm'} install -g ${path.join(this.matterbridgeDirectory, 'uploads', plugin.tarballPath)} ${isBun() ? '--omit=dev --silent' : '--no-fund --no-audit --silent --omit=dev'}`);
747
747
  }
748
748
  else {
749
749
  this.log.info(`Plugin ${plg}${plugin.name}${nf} not found. Trying to reinstall it from npm${plugin.version.includes('-dev-') ? ' with tag @dev' : ''}...`);
750
- execSync(`${sudo ? 'sudo ' : ''}${isBun() ? 'bun' : 'npm'} install -g ${plugin.name}${plugin.version.includes('-dev-') ? '@dev' : ''} ${isBun() ? '--production --silent' : '--no-fund --no-audit --silent --omit=dev'}`);
750
+ execSync(`${sudo ? 'sudo ' : ''}${isBun() ? 'bun' : 'npm'} install -g ${plugin.name}${plugin.version.includes('-dev-') ? '@dev' : ''} ${isBun() ? '--omit=dev --silent' : '--no-fund --no-audit --silent --omit=dev'}`);
751
751
  }
752
752
  this.log.info(`Plugin ${plg}${plugin.name}${nf} reinstalled.`);
753
753
  }
@@ -1202,7 +1202,7 @@ export class Matterbridge extends EventEmitter {
1202
1202
  workerData: {
1203
1203
  threadName: 'SpawnCommand',
1204
1204
  command: isBun() ? 'bun' : 'npm',
1205
- args: isBun() ? ['install', '-g', 'matterbridge', '--production'] : ['install', '-g', 'matterbridge', '--omit=dev', '--verbose'],
1205
+ args: isBun() ? ['install', '-g', 'matterbridge', '--omit=dev'] : ['install', '-g', 'matterbridge', '--omit=dev', '--verbose'],
1206
1206
  packageCommand: 'install',
1207
1207
  packageName: 'matterbridge',
1208
1208
  },
@@ -524,7 +524,7 @@ export class PluginManager extends EventEmitter {
524
524
  workerData: {
525
525
  threadName: 'SpawnCommand',
526
526
  command: isBun() ? 'bun' : 'npm',
527
- args: isBun() ? ['install', '-g', packageName, '--production'] : ['install', '-g', packageName, '--omit=dev', '--verbose'],
527
+ args: isBun() ? ['install', '-g', packageName, '--omit=dev'] : ['install', '-g', packageName, '--omit=dev', '--verbose'],
528
528
  packageCommand: 'install',
529
529
  packageName: packageName,
530
530
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matterbridge/core",
3
- "version": "3.9.3-dev-20260627-53ee5fe",
3
+ "version": "3.9.3-dev-20260627-5d60de5",
4
4
  "description": "Matterbridge core library",
5
5
  "author": "https://github.com/Luligu",
6
6
  "homepage": "https://matterbridge.io/",
@@ -130,10 +130,10 @@
130
130
  ],
131
131
  "dependencies": {
132
132
  "@matter/main": "0.17.4-alpha.0-20260624-ef5aefa3b",
133
- "@matterbridge/dgram": "3.9.3-dev-20260627-53ee5fe",
134
- "@matterbridge/thread": "3.9.3-dev-20260627-53ee5fe",
135
- "@matterbridge/types": "3.9.3-dev-20260627-53ee5fe",
136
- "@matterbridge/utils": "3.9.3-dev-20260627-53ee5fe",
133
+ "@matterbridge/dgram": "3.9.3-dev-20260627-5d60de5",
134
+ "@matterbridge/thread": "3.9.3-dev-20260627-5d60de5",
135
+ "@matterbridge/types": "3.9.3-dev-20260627-5d60de5",
136
+ "@matterbridge/utils": "3.9.3-dev-20260627-5d60de5",
137
137
  "escape-html": "1.0.3",
138
138
  "express": "5.2.1",
139
139
  "express-rate-limit": "8.5.2",