agileflow 2.90.3 → 2.90.4
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 +5 -0
- package/package.json +1 -1
- package/scripts/tui/index.js +3 -8
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/scripts/tui/index.js
CHANGED
|
@@ -20,14 +20,9 @@
|
|
|
20
20
|
* 1-9 - Switch session focus
|
|
21
21
|
*/
|
|
22
22
|
|
|
23
|
-
//
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
require('react');
|
|
27
|
-
require('ink');
|
|
28
|
-
} catch (e) {
|
|
29
|
-
useInk = false;
|
|
30
|
-
}
|
|
23
|
+
// Ink-based TUI is disabled due to React version conflicts in monorepo
|
|
24
|
+
// The simple-tui provides responsive layouts and works reliably
|
|
25
|
+
const useInk = false;
|
|
31
26
|
|
|
32
27
|
/**
|
|
33
28
|
* Main entry point
|