@wonderwhy-er/desktop-commander 0.2.18-alpha.7 → 0.2.18-alpha.8
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 +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -773,6 +773,8 @@ export default async function setup() {
|
|
|
773
773
|
|
|
774
774
|
// Determine if running through npx or locally
|
|
775
775
|
const isNpx = import.meta.url.includes('node_modules');
|
|
776
|
+
process.stderr.write(`\n[SETUP] import.meta.url: ${import.meta.url}\n`);
|
|
777
|
+
process.stderr.write(`[SETUP] isNpx: ${isNpx}\n`);
|
|
776
778
|
await trackEvent('npx_setup_execution_mode', { isNpx });
|
|
777
779
|
|
|
778
780
|
// Fix Windows path handling for npx execution
|
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.8";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.2.18-alpha.
|
|
1
|
+
export const VERSION = '0.2.18-alpha.8';
|
package/package.json
CHANGED