@openbuilder/cli 0.50.17 → 0.50.19
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/dist/chunks/{Banner-D4tqKfzA.js → Banner-ClJs6QcI.js} +3 -4
- package/dist/chunks/{Banner-D4tqKfzA.js.map → Banner-ClJs6QcI.js.map} +1 -1
- package/dist/chunks/_commonjsHelpers-DcsQGttR.js +32 -0
- package/dist/chunks/_commonjsHelpers-DcsQGttR.js.map +1 -0
- package/dist/chunks/{init-tui-BNzk_7Yx.js → init-tui-DDxZYe9B.js} +54 -55
- package/dist/chunks/{init-tui-BNzk_7Yx.js.map → init-tui-DDxZYe9B.js.map} +1 -1
- package/dist/chunks/{init-CZoN6soU.js → init-zX5aX-qn.js} +5 -6
- package/dist/chunks/{init-CZoN6soU.js.map → init-zX5aX-qn.js.map} +1 -1
- package/dist/chunks/{main-tui-CTgDJWmu.js → main-tui-B5GJ49Bp.js} +43 -44
- package/dist/chunks/{main-tui-CTgDJWmu.js.map → main-tui-B5GJ49Bp.js.map} +1 -1
- package/dist/chunks/{run-DAEiNzrf.js → run-CaSootos.js} +33 -34
- package/dist/chunks/{run-DAEiNzrf.js.map → run-CaSootos.js.map} +1 -1
- package/dist/chunks/{start-BygPCbvw.js → start-B4P27nZ7.js} +46 -47
- package/dist/chunks/{start-BygPCbvw.js.map → start-B4P27nZ7.js.map} +1 -1
- package/dist/chunks/theme-BF4W2Gwm.js +2300 -0
- package/dist/chunks/theme-BF4W2Gwm.js.map +1 -0
- package/dist/chunks/{useBuildState-CdBSu9y_.js → useBuildState-BZuezCb6.js} +33 -35
- package/dist/chunks/{useBuildState-CdBSu9y_.js.map → useBuildState-BZuezCb6.js.map} +1 -1
- package/dist/cli/index.js +5 -5
- package/dist/instrument.js +1 -29
- package/dist/instrument.js.map +1 -1
- package/package.json +1 -2
- package/scripts/prepare-release.js +9 -0
- package/dist/chunks/theme-DhorI2Hb.js +0 -44
- package/dist/chunks/theme-DhorI2Hb.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openbuilder/cli",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.19",
|
|
4
4
|
"description": "OpenBuilder CLI - AI-powered application builder",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -76,7 +76,6 @@
|
|
|
76
76
|
"ora": "^9.0.0",
|
|
77
77
|
"pg": "^8.13.1",
|
|
78
78
|
"picocolors": "^1.1.1",
|
|
79
|
-
"react": "19.1.0",
|
|
80
79
|
"simple-git": "^3.28.0",
|
|
81
80
|
"ws": "^8.18.0",
|
|
82
81
|
"zod": "^4.0.0"
|
|
@@ -51,6 +51,15 @@ for (const dep of workspaceDeps) {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
// REMOVE react - it's bundled by rollup to prevent multiple instances issue with ink
|
|
55
|
+
// When react is both bundled AND listed as a dependency, ink uses the npm-installed
|
|
56
|
+
// version while our code uses the bundled version, causing "Cannot read properties of null"
|
|
57
|
+
if (packageJson.dependencies['react']) {
|
|
58
|
+
console.log(` Removing react (bundled by rollup to prevent multiple instances)`);
|
|
59
|
+
delete packageJson.dependencies['react'];
|
|
60
|
+
modified = true;
|
|
61
|
+
}
|
|
62
|
+
|
|
54
63
|
// Remove bundledDependencies if it exists (no longer needed)
|
|
55
64
|
if (packageJson.bundledDependencies) {
|
|
56
65
|
console.log(` Removing bundledDependencies (agent-core is inlined, not bundled)`);
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
// OpenBuilder CLI - Built with Rollup
|
|
2
|
-
/**
|
|
3
|
-
* Theme and color definitions for the TUI
|
|
4
|
-
*/
|
|
5
|
-
const colors = {
|
|
6
|
-
// Primary brand colors
|
|
7
|
-
cyan: '#06b6d4',
|
|
8
|
-
purple: '#a855f7',
|
|
9
|
-
brightPurple: '#c084fc',
|
|
10
|
-
// Status colors
|
|
11
|
-
success: '#22c55e',
|
|
12
|
-
error: '#ef4444',
|
|
13
|
-
warning: '#f59e0b',
|
|
14
|
-
// Neutral colors
|
|
15
|
-
white: '#ffffff',
|
|
16
|
-
gray: '#6b7280',
|
|
17
|
-
dimGray: '#4b5563',
|
|
18
|
-
darkGray: '#374151',
|
|
19
|
-
};
|
|
20
|
-
const symbols = {
|
|
21
|
-
// Progress indicators
|
|
22
|
-
filledDot: '●',
|
|
23
|
-
hollowDot: '○',
|
|
24
|
-
errorDot: '✗',
|
|
25
|
-
// Task states
|
|
26
|
-
check: '✓',
|
|
27
|
-
cross: '✗',
|
|
28
|
-
// Connectors
|
|
29
|
-
horizontalLine: '─',
|
|
30
|
-
// Spinners (will cycle through these)
|
|
31
|
-
spinnerFrames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],
|
|
32
|
-
};
|
|
33
|
-
const layout = {
|
|
34
|
-
// Animation timing (slower as requested)
|
|
35
|
-
spinnerInterval: 120, // ms between spinner frames
|
|
36
|
-
taskCompletionDelay: 400, // ms to pause after task completion
|
|
37
|
-
stepTransitionDelay: 300, // ms between step transitions
|
|
38
|
-
// Shared width for progress stepper and task list (keeps them aligned)
|
|
39
|
-
// ProgressStepper: 4 cells * 10 chars + 3 connectors * 7 chars = 61 chars
|
|
40
|
-
progressWidth: 61,
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export { colors as c, layout as l, symbols as s };
|
|
44
|
-
//# sourceMappingURL=theme-DhorI2Hb.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"theme-DhorI2Hb.js","sources":["../../src/cli/tui/theme.ts"],"sourcesContent":["/**\n * Theme and color definitions for the TUI\n */\n\nexport const colors = {\n // Primary brand colors\n cyan: '#06b6d4',\n purple: '#a855f7',\n brightPurple: '#c084fc',\n \n // Status colors\n success: '#22c55e',\n error: '#ef4444',\n warning: '#f59e0b',\n \n // Neutral colors\n white: '#ffffff',\n gray: '#6b7280',\n dimGray: '#4b5563',\n darkGray: '#374151',\n};\n\nexport const symbols = {\n // Progress indicators\n filledDot: '●',\n hollowDot: '○',\n errorDot: '✗',\n \n // Task states\n check: '✓',\n cross: '✗',\n \n // Connectors\n horizontalLine: '─',\n treeConnector: '└─',\n \n // Spinners (will cycle through these)\n spinnerFrames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'],\n};\n\nexport const layout = {\n // Animation timing (slower as requested)\n spinnerInterval: 120, // ms between spinner frames\n taskCompletionDelay: 400, // ms to pause after task completion\n stepTransitionDelay: 300, // ms between step transitions\n \n // Shared width for progress stepper and task list (keeps them aligned)\n // ProgressStepper: 4 cells * 10 chars + 3 connectors * 7 chars = 61 chars\n progressWidth: 61,\n};\n"],"names":[],"mappings":";AAAA;;AAEG;AAEI,MAAM,MAAM,GAAG;;AAEpB,IAAA,IAAI,EAAE,SAAS;AACf,IAAA,MAAM,EAAE,SAAS;AACjB,IAAA,YAAY,EAAE,SAAS;;AAGvB,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,KAAK,EAAE,SAAS;AAChB,IAAA,OAAO,EAAE,SAAS;;AAGlB,IAAA,KAAK,EAAE,SAAS;AAChB,IAAA,IAAI,EAAE,SAAS;AACf,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,QAAQ,EAAE,SAAS;;AAGd,MAAM,OAAO,GAAG;;AAErB,IAAA,SAAS,EAAE,GAAG;AACd,IAAA,SAAS,EAAE,GAAG;AACd,IAAA,QAAQ,EAAE,GAAG;;AAGb,IAAA,KAAK,EAAE,GAAG;AACV,IAAA,KAAK,EAAE,GAAG;;AAGV,IAAA,cAAc,EAAE,GAAG;AACnB,IAEA;IACA,aAAa,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;;AAG5D,MAAM,MAAM,GAAG;;IAEpB,eAAe,EAAE,GAAG;IACpB,mBAAmB,EAAE,GAAG;IACxB,mBAAmB,EAAE,GAAG;;;AAIxB,IAAA,aAAa,EAAE,EAAE;;;;;"}
|