@tamyla/clodo-framework 3.2.4 → 3.2.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/CHANGELOG.md +7 -0
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.2.5](https://github.com/tamylaa/clodo-framework/compare/v3.2.4...v3.2.5) (2025-12-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct import paths in dist/index.js for Windows compatibility ([351ba68](https://github.com/tamylaa/clodo-framework/commit/351ba68450c675af6f199036121aa2797eaa97a8))
|
|
7
|
+
|
|
1
8
|
## [3.2.4](https://github.com/tamylaa/clodo-framework/compare/v3.2.3...v3.2.4) (2025-12-06)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -38,13 +38,13 @@ export { ServiceOrchestrator } from './service-management/ServiceOrchestrator.js
|
|
|
38
38
|
export { InputCollector } from './service-management/InputCollector.js';
|
|
39
39
|
|
|
40
40
|
// CLI utilities (for framework CLI commands)
|
|
41
|
-
export { StandardOptions } from '
|
|
42
|
-
export { ConfigLoader } from '
|
|
43
|
-
export { ServiceConfigManager } from '
|
|
44
|
-
export { InteractiveDeploymentCoordinator } from '
|
|
45
|
-
export { OutputFormatter } from '
|
|
46
|
-
export { verifyWorkerDeployment, healthCheckWithBackoff, checkHealth } from '
|
|
47
|
-
export { classifyError, getRecoverySuggestions } from '
|
|
41
|
+
export { StandardOptions } from './lib/shared/utils/cli-options.js';
|
|
42
|
+
export { ConfigLoader } from './lib/shared/utils/config-loader.js';
|
|
43
|
+
export { ServiceConfigManager } from './lib/shared/utils/service-config-manager.js';
|
|
44
|
+
export { InteractiveDeploymentCoordinator } from './lib/shared/deployment/workflows/interactive-deployment-coordinator.js';
|
|
45
|
+
export { OutputFormatter } from './lib/shared/utils/output-formatter.js';
|
|
46
|
+
export { verifyWorkerDeployment, healthCheckWithBackoff, checkHealth } from './lib/shared/monitoring/health-checker.js';
|
|
47
|
+
export { classifyError, getRecoverySuggestions } from './lib/shared/error-handling/error-classifier.js';
|
|
48
48
|
|
|
49
49
|
// Framework version info
|
|
50
50
|
export const FRAMEWORK_VERSION = '1.0.0';
|