rrce-workflow 0.2.41 → 0.2.43
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/index.js +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2224,7 +2224,7 @@ var init_ProjectsView = __esm({
|
|
|
2224
2224
|
const allProjects = scanForProjects();
|
|
2225
2225
|
const projectItems = allProjects.map((p) => {
|
|
2226
2226
|
const projectConfig = config.projects.find(
|
|
2227
|
-
(c) => c.path && c.path === p.
|
|
2227
|
+
(c) => c.path && c.path === p.path || !c.path && c.name === p.name
|
|
2228
2228
|
);
|
|
2229
2229
|
const isExposed = projectConfig ? projectConfig.expose : config.defaults.includeNew;
|
|
2230
2230
|
return {
|
|
@@ -2255,7 +2255,7 @@ var init_ProjectsView = __esm({
|
|
|
2255
2255
|
setConfig(newConfig);
|
|
2256
2256
|
if (onConfigChange) onConfigChange();
|
|
2257
2257
|
};
|
|
2258
|
-
return /* @__PURE__ */ jsxs3(Box4, { flexDirection: "column", padding: 1, borderStyle: "round", borderColor: "cyan", children: [
|
|
2258
|
+
return /* @__PURE__ */ jsxs3(Box4, { flexDirection: "column", padding: 1, borderStyle: "round", borderColor: "cyan", flexGrow: 1, children: [
|
|
2259
2259
|
/* @__PURE__ */ jsx4(Text4, { bold: true, color: "cyan", children: " Exposed Projects " }),
|
|
2260
2260
|
/* @__PURE__ */ jsx4(Text4, { color: "dim", children: " Select projects to expose via the MCP server. Use Space to toggle, Enter to save." }),
|
|
2261
2261
|
/* @__PURE__ */ jsx4(Box4, { marginTop: 1, flexDirection: "column", children: /* @__PURE__ */ jsx4(
|
|
@@ -2370,7 +2370,7 @@ var init_InstallView = __esm({
|
|
|
2370
2370
|
init_paths();
|
|
2371
2371
|
InstallView = () => {
|
|
2372
2372
|
const workspacePath = detectWorkspaceRoot();
|
|
2373
|
-
return /* @__PURE__ */ jsxs5(Box6, { flexDirection: "column", padding: 1, borderStyle: "round", borderColor: "magenta", children: [
|
|
2373
|
+
return /* @__PURE__ */ jsxs5(Box6, { flexDirection: "column", padding: 1, borderStyle: "round", borderColor: "magenta", flexGrow: 1, children: [
|
|
2374
2374
|
/* @__PURE__ */ jsx6(Text6, { bold: true, color: "magenta", children: " Installation & Configuration " }),
|
|
2375
2375
|
/* @__PURE__ */ jsx6(Text6, { color: "dim", children: " Configure IDE integrations for VSCode, Claude, and Antigravity." }),
|
|
2376
2376
|
/* @__PURE__ */ jsx6(Box6, { marginTop: 1, flexDirection: "column", children: /* @__PURE__ */ jsx6(
|
|
@@ -2424,7 +2424,7 @@ var init_StatusBoard = __esm({
|
|
|
2424
2424
|
"src/mcp/ui/StatusBoard.tsx"() {
|
|
2425
2425
|
"use strict";
|
|
2426
2426
|
StatusBoard = ({ exposedLabel, port, pid, running }) => {
|
|
2427
|
-
return /* @__PURE__ */ jsx8(Box8, { borderStyle: "single", borderColor: "cyan", paddingX: 1, children: /* @__PURE__ */ jsxs7(Text8, { children: [
|
|
2427
|
+
return /* @__PURE__ */ jsx8(Box8, { borderStyle: "single", borderColor: "cyan", paddingX: 1, flexGrow: 1, children: /* @__PURE__ */ jsxs7(Text8, { children: [
|
|
2428
2428
|
running ? /* @__PURE__ */ jsx8(Text8, { color: "green", children: "\u25CF RUNNING" }) : /* @__PURE__ */ jsx8(Text8, { color: "red", children: "\u25CF STOPPED" }),
|
|
2429
2429
|
" ",
|
|
2430
2430
|
"\u2502",
|
|
@@ -2538,7 +2538,7 @@ var init_App = __esm({
|
|
|
2538
2538
|
const projects = scanForProjects();
|
|
2539
2539
|
const exposedProjects = projects.filter((p) => {
|
|
2540
2540
|
const cfg = config.projects.find(
|
|
2541
|
-
(c) => c.path && c.path === p.
|
|
2541
|
+
(c) => c.path && c.path === p.path || !c.path && c.name === p.name
|
|
2542
2542
|
);
|
|
2543
2543
|
return cfg?.expose ?? config.defaults.includeNew;
|
|
2544
2544
|
});
|