gtx-cli 2.5.29-bin.1 → 2.5.29-bin.2

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.
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -49,13 +49,16 @@ function routeToBinary() {
49
49
  }
50
50
  }
51
51
  // Spawn the appropriate binary with all arguments
52
+ console.log('Spawning binary:', binaryPath, process.argv.slice(2));
52
53
  const child = spawn(binaryPath, process.argv.slice(2), {
53
54
  stdio: 'inherit',
54
55
  });
55
56
  child.on('close', (code) => {
57
+ console.log('Binary closed with code:', code);
56
58
  process.exit(code);
57
59
  });
58
- child.on('error', () => {
60
+ child.on('error', (error) => {
61
+ console.error('Error spawning binary:', error);
59
62
  process.exit(1);
60
63
  });
61
64
  return;
@@ -1 +1 @@
1
- export declare const PACKAGE_VERSION = "2.5.29-bin.1";
1
+ export declare const PACKAGE_VERSION = "2.5.29-bin.2";
@@ -1,2 +1,2 @@
1
1
  // This file is auto-generated. Do not edit manually.
2
- export const PACKAGE_VERSION = '2.5.29-bin.1';
2
+ export const PACKAGE_VERSION = '2.5.29-bin.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "2.5.29-bin.1",
3
+ "version": "2.5.29-bin.2",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/bin/bin-main.js",
6
6
  "files": [