@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.
- package/dist/setup-claude-server.js +7 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
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.
|
|
1
|
+
export const VERSION = '0.2.18-alpha.9';
|
package/package.json
CHANGED