rterm-backend 2.7.4 → 2.7.5

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.
Files changed (2) hide show
  1. package/bin/gybackend.js +11 -0
  2. package/package.json +1 -1
package/bin/gybackend.js CHANGED
@@ -382296,6 +382296,17 @@ function createObservability(deps) {
382296
382296
  if (fs22.existsSync(bundlePluginRoot)) scanRoots.push(bundlePluginRoot);
382297
382297
  } catch {
382298
382298
  }
382299
+ try {
382300
+ const req = createRequire2(import.meta.url);
382301
+ const fs22 = req("node:fs");
382302
+ const path31 = req("node:path");
382303
+ const resourcesPath = process.resourcesPath;
382304
+ if (resourcesPath) {
382305
+ const resourcesPlugins = path31.join(resourcesPath, "plugins");
382306
+ if (fs22.existsSync(resourcesPlugins)) scanRoots.push(resourcesPlugins);
382307
+ }
382308
+ } catch {
382309
+ }
382299
382310
  const pluginRegistry = new PluginRegistry({
382300
382311
  scanRoots,
382301
382312
  createContext: (record2) => PluginRegistry.defaultContext(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rterm-backend",
3
- "version": "2.7.4",
3
+ "version": "2.7.5",
4
4
  "description": "RTerm headless backend — run RTerm-as-a-service (AI agent, SSH/WinRM/Serial/local terminals, fleet orchestration, advanced automation with event-driven triggers + NATS event mesh, scheduled automation, SRE observability, Netdata integration, AWS APerf performance deep-dive, plugin system) and drive it over a WebSocket JSON-RPC gateway. No desktop UI required.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",