kitstore-cli 1.0.103 → 1.0.106
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/index.js +10 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4,16 +4,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
// DIAGNOSTIC: Log execution environment before any config loading
|
|
8
|
-
console.
|
|
9
|
-
console.
|
|
10
|
-
console.
|
|
11
|
-
console.
|
|
12
|
-
console.
|
|
13
|
-
console.
|
|
14
|
-
console.
|
|
15
|
-
console.
|
|
16
|
-
console.
|
|
7
|
+
// DIAGNOSTIC: Log execution environment before any config loading (to stderr)
|
|
8
|
+
console.error('🔧 DIAGNOSTIC: CLI Execution Environment:');
|
|
9
|
+
console.error('🔧 __filename:', __filename);
|
|
10
|
+
console.error('🔧 __dirname:', __dirname);
|
|
11
|
+
console.error('🔧 process.cwd():', process.cwd());
|
|
12
|
+
console.error('🔧 process.execPath:', process.execPath);
|
|
13
|
+
console.error('🔧 process.argv:', JSON.stringify(process.argv));
|
|
14
|
+
console.error('🔧 process.env.NODE_ENV:', process.env.NODE_ENV);
|
|
15
|
+
console.error('🔧 process.env.npm_config_prefix:', process.env.npm_config_prefix);
|
|
16
|
+
console.error('🔧 process.env.PATH (first 200 chars):', process.env.PATH?.substring(0, 200) + '...');
|
|
17
17
|
const commander_1 = require("commander");
|
|
18
18
|
const login_1 = require("./commands/login");
|
|
19
19
|
const install_1 = require("./commands/install");
|