@wonderwhy-er/desktop-commander 0.2.18-alpha.8 → 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
 
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "0.2.18-alpha.8";
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.8';
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.8",
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",