@wonderwhy-er/desktop-commander 0.2.18-alpha.7 → 0.2.18-alpha.9

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.
@@ -674,6 +674,13 @@ async function restartClaude() {
674
674
 
675
675
  // Main function to export for ESM compatibility
676
676
  export default async function setup() {
677
+ // VERY FIRST THING - test if stderr works AT ALL
678
+ process.stderr.write('\n\n========== SETUP FUNCTION STARTED ==========\n');
679
+ process.stderr.write(`__dirname: ${__dirname}\n`);
680
+ process.stderr.write(`__filename: ${__filename}\n`);
681
+ process.stderr.write(`process.argv: ${JSON.stringify(process.argv)}\n`);
682
+ process.stderr.write('=============================================\n\n');
683
+
677
684
  // Add tracking for setup function entry
678
685
  await trackEvent('npx_setup_function_started');
679
686
 
@@ -773,6 +780,8 @@ export default async function setup() {
773
780
 
774
781
  // Determine if running through npx or locally
775
782
  const isNpx = import.meta.url.includes('node_modules');
783
+ process.stderr.write(`\n[SETUP] import.meta.url: ${import.meta.url}\n`);
784
+ process.stderr.write(`[SETUP] isNpx: ${isNpx}\n`);
776
785
  await trackEvent('npx_setup_execution_mode', { isNpx });
777
786
 
778
787
  // Fix Windows path handling for npx execution
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.2.18-alpha.7";
1
+ export declare const VERSION = "0.2.18-alpha.9";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.2.18-alpha.7';
1
+ export const VERSION = '0.2.18-alpha.9';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderwhy-er/desktop-commander",
3
- "version": "0.2.18-alpha.7",
3
+ "version": "0.2.18-alpha.9",
4
4
  "description": "MCP server for terminal operations and file editing",
5
5
  "mcpName": "io.github.wonderwhy-er/desktop-commander",
6
6
  "license": "MIT",