rrce-workflow 0.2.60 → 0.2.61
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -680,7 +680,7 @@ async function promptLinkedProjects(existingProjects) {
|
|
|
680
680
|
async function promptGitignore() {
|
|
681
681
|
const result = await confirm({
|
|
682
682
|
message: "Add generated folders to .gitignore? (as comments - uncomment if needed)",
|
|
683
|
-
initialValue:
|
|
683
|
+
initialValue: false
|
|
684
684
|
});
|
|
685
685
|
if (isCancel2(result)) {
|
|
686
686
|
cancel("Setup cancelled.");
|
|
@@ -3353,7 +3353,7 @@ var init_App = __esm({
|
|
|
3353
3353
|
const exposedProjects = useMemo2(
|
|
3354
3354
|
() => projects.filter((p) => {
|
|
3355
3355
|
const cfg = config.projects.find(
|
|
3356
|
-
(c) => c.path && c.path === p.path || !c.path && c.name === p.name
|
|
3356
|
+
(c) => c.path && c.path === p.path || p.source === "global" && c.name === p.name || !c.path && c.name === p.name
|
|
3357
3357
|
);
|
|
3358
3358
|
return cfg?.expose ?? config.defaults.includeNew;
|
|
3359
3359
|
}),
|
|
@@ -3806,7 +3806,7 @@ async function runExpressSetup(workspacePath, workspaceName, existingProjects, s
|
|
|
3806
3806
|
globalPath: customGlobalPath,
|
|
3807
3807
|
tools: ["copilot", "antigravity"],
|
|
3808
3808
|
linkedProjects: [],
|
|
3809
|
-
addToGitignore:
|
|
3809
|
+
addToGitignore: false,
|
|
3810
3810
|
exposeToMCP: true,
|
|
3811
3811
|
enableRAG: true
|
|
3812
3812
|
};
|