rterm-backend 2.8.5 → 2.8.6

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 +4 -5
  2. package/package.json +1 -1
package/bin/gybackend.js CHANGED
@@ -11734,12 +11734,11 @@ function loadBetterSqlite3() {
11734
11734
  } catch (e) {
11735
11735
  const candidates = [
11736
11736
  "better_sqlite3.node",
11737
- // root of the embedded fs
11738
- "native/win32-x64/better_sqlite3.node",
11737
+ // the SEA asset key (resolved by the SEA's embedded require)
11738
+ "./better_sqlite3.node",
11739
+ // relative to the bundle's embedded dir
11740
+ "native/win32-x64/better_sqlite3.node"
11739
11741
  // the staged path from the SEA config
11740
- "native/darwin-arm64/better_sqlite3.node",
11741
- "native/linux-x64/better_sqlite3.node",
11742
- "native/linux-arm64/better_sqlite3.node"
11743
11742
  ];
11744
11743
  let lastErr = e;
11745
11744
  for (const candidate of candidates) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rterm-backend",
3
- "version": "2.8.5",
3
+ "version": "2.8.6",
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",