@tamyla/clodo-framework 2.0.6 → 2.0.7
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/bin/clodo-service.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.0.7](https://github.com/tamylaa/clodo-framework/compare/v2.0.6...v2.0.7) (2025-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct orchestrator method name in deploy command ([b28a372](https://github.com/tamylaa/clodo-framework/commit/b28a37222cf2859449b3470b16ec6eb284cc50e2))
|
|
7
|
+
|
|
1
8
|
## [2.0.6](https://github.com/tamylaa/clodo-framework/compare/v2.0.5...v2.0.6) (2025-10-11)
|
|
2
9
|
|
|
3
10
|
|
package/bin/clodo-service.js
CHANGED
|
@@ -541,7 +541,7 @@ program
|
|
|
541
541
|
|
|
542
542
|
console.log(chalk.cyan('🚀 Starting deployment...\n'));
|
|
543
543
|
|
|
544
|
-
const result = await orchestrator.
|
|
544
|
+
const result = await orchestrator.deploySingleDomain(coreInputs.domainName, {
|
|
545
545
|
...coreInputs,
|
|
546
546
|
...confirmations,
|
|
547
547
|
servicePath: options.servicePath
|