@elontools/runner 3.2.2 → 3.2.3

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/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -75,7 +75,7 @@ Options:
75
75
  process.exit(0);
76
76
  }
77
77
  if (subcommand === 'version' || args.includes('--version') || args.includes('-v')) {
78
- console.log('elon-runner v3.1.0');
78
+ console.log('elon-runner v3.2.3');
79
79
  process.exit(0);
80
80
  }
81
81
  // Fallback: read ~/.elon-runner/config.json if missing runner credentials
@@ -148,7 +148,7 @@ async function registerRunner() {
148
148
  os: platform,
149
149
  arch: arch,
150
150
  mode: config.mode || 'headless',
151
- version: '3.1.0',
151
+ version: '3.2.3',
152
152
  };
153
153
  logger.info('📡 POST ' + url, { name: hostname, os: platform, arch });
154
154
  const response = await fetch(url, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elontools/runner",
3
- "version": "3.2.2",
3
+ "version": "3.2.3",
4
4
  "description": "Elon Tools Runner — Connect your machine to ElonTools dashboard for remote management, terminal access, file sync, and screen capture.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",