@tamyla/clodo-framework 2.0.1 → 2.0.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.0.2](https://github.com/tamylaa/clodo-framework/compare/v2.0.1...v2.0.2) (2025-10-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * resolve CLI tool import paths and runtime dependencies ([6a726b9](https://github.com/tamylaa/clodo-framework/commit/6a726b95a5e55055048a262d1c146a50a4f0b46f))
7
+
1
8
  ## [2.0.1](https://github.com/tamylaa/clodo-framework/compare/v2.0.0...v2.0.1) (2025-10-10)
2
9
 
3
10
 
@@ -15,8 +15,8 @@
15
15
  import { Command } from 'commander';
16
16
  import { createInterface } from 'readline';
17
17
  import chalk from 'chalk';
18
- import { ServiceOrchestrator } from '../src/service-management/ServiceOrchestrator.js';
19
- import { InputCollector } from '../src/service-management/InputCollector.js';
18
+ import { ServiceOrchestrator } from '../dist/service-management/ServiceOrchestrator.js';
19
+ import { InputCollector } from '../dist/service-management/InputCollector.js';
20
20
 
21
21
  const program = new Command();
22
22
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { SecurityCLI } from '../../src/security/SecurityCLI.js';
3
+ import { SecurityCLI } from '../../dist/security/SecurityCLI.js';
4
4
 
5
5
  const command = process.argv[2];
6
6
  const args = process.argv.slice(3);
@@ -5,7 +5,7 @@
5
5
  * Creates new ser console.log(`✓ Using Clodo Framework ServiceCreator module`);ices from predefined templates
6
6
  */
7
7
 
8
- import { ServiceCreator } from '../../src/service-management/ServiceCreator.js';
8
+ import { ServiceCreator } from '../../dist/service-management/ServiceCreator.js';
9
9
 
10
10
  const SERVICE_TYPES = ['data-service', 'auth-service', 'content-service', 'api-gateway', 'generic'];
11
11
 
@@ -11,7 +11,7 @@
11
11
  */
12
12
 
13
13
  import { program } from 'commander';
14
- import { ServiceInitializer } from '../../src/service-management/ServiceInitializer.js';
14
+ import { ServiceInitializer } from '../../dist/service-management/ServiceInitializer.js';
15
15
 
16
16
  const SERVICE_TYPES = ['generic', 'data-service', 'auth-service', 'content-service', 'api-gateway'];
17
17