s9n-devops-agent 2.0.11-dev.3 → 2.0.11-dev.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s9n-devops-agent",
3
- "version": "2.0.11-dev.3",
3
+ "version": "2.0.11-dev.5",
4
4
  "description": "CS_DevOpsAgent - Intelligent Git Automation System with multi-agent support and session management",
5
5
  "type": "module",
6
6
  "main": "src/cs-devops-agent-worker.js",
@@ -19,6 +19,7 @@
19
19
 
20
20
  import fs from 'fs';
21
21
  import path from 'path';
22
+ import readline from 'readline';
22
23
  import { fileURLToPath } from 'url';
23
24
  import { dirname } from 'path';
24
25
  import { spawn, execSync, exec } from 'child_process';
@@ -28,12 +29,10 @@ import { credentialsManager } from './credentials-manager.js';
28
29
  credentialsManager.injectEnv();
29
30
 
30
31
  const __filename = fileURLToPath(import.meta.url);
32
+ const __dirname = dirname(__filename);
31
33
  import { hasDockerConfiguration } from './docker-utils.js';
32
34
  import HouseRulesManager from './house-rules-manager.js';
33
35
 
34
- const __filename = fileURLToPath(import.meta.url);
35
- const __dirname = dirname(__filename);
36
-
37
36
  // ============================================================================
38
37
  // CONFIGURATION
39
38
  // ============================================================================