@tamyla/clodo-framework 2.0.5 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ ## [2.0.6](https://github.com/tamylaa/clodo-framework/compare/v2.0.5...v2.0.6) (2025-10-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * PowerShell double-echo in interactive input collection ([6a4b153](https://github.com/tamylaa/clodo-framework/commit/6a4b15380efac0ffc4b57ea4e24f320853c33137))
14
+
1
15
  ## [2.0.5](https://github.com/tamylaa/clodo-framework/compare/v2.0.4...v2.0.5) (2025-10-11)
2
16
 
3
17
 
@@ -541,7 +541,7 @@ program
541
541
 
542
542
  console.log(chalk.cyan('🚀 Starting deployment...\n'));
543
543
 
544
- const result = await orchestrator.deployDomain(coreInputs.domainName, {
544
+ const result = await orchestrator.deploySingleDomain(coreInputs.domainName, {
545
545
  ...coreInputs,
546
546
  ...confirmations,
547
547
  servicePath: options.servicePath
@@ -18,9 +18,13 @@ import { uiStructuresLoader } from '../utils/ui-structures-loader.js';
18
18
  export class InputCollector {
19
19
  constructor(options = {}) {
20
20
  this.interactive = options.interactive !== false;
21
+
22
+ // Fix for PowerShell double-echo issue
23
+ const isPowerShell = process.env.PSModulePath !== undefined;
21
24
  this.rl = this.interactive ? createInterface({
22
25
  input: process.stdin,
23
- output: process.stdout
26
+ output: process.stdout,
27
+ terminal: !isPowerShell // Disable terminal mode in PowerShell to prevent double echo
24
28
  }) : null;
25
29
  }
26
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamyla/clodo-framework",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "Reusable framework for Clodo-style software architecture on Cloudflare Workers + D1",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -95,7 +95,9 @@
95
95
  "update-service": "node bin/clodo-service.js update",
96
96
  "diagnose-service": "node bin/clodo-service.js diagnose",
97
97
  "validate-service": "node bin/clodo-service.js validate",
98
- "customer-config": "node bin/shared/config/customer-cli.js"
98
+ "customer-config": "node bin/shared/config/customer-cli.js",
99
+ "push:safe": "powershell -ExecutionPolicy Bypass -File ./scripts/utilities/safe-push.ps1",
100
+ "sync": "git fetch && git rebase origin/master"
99
101
  },
100
102
  "keywords": [
101
103
  "cloudflare",