@tamyla/clodo-framework 2.0.5 → 2.0.6
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.6](https://github.com/tamylaa/clodo-framework/compare/v2.0.5...v2.0.6) (2025-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* PowerShell double-echo in interactive input collection ([6a4b153](https://github.com/tamylaa/clodo-framework/commit/6a4b15380efac0ffc4b57ea4e24f320853c33137))
|
|
7
|
+
|
|
1
8
|
## [2.0.5](https://github.com/tamylaa/clodo-framework/compare/v2.0.4...v2.0.5) (2025-10-11)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -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.
|
|
3
|
+
"version": "2.0.6",
|
|
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",
|