@arvoretech/hub 0.13.1 → 0.13.2
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.
|
@@ -117,7 +117,7 @@ async function checkAndAutoRegenerate(hubDir) {
|
|
|
117
117
|
return;
|
|
118
118
|
}
|
|
119
119
|
console.log(chalk.yellow("\n Detected outdated configs, auto-regenerating..."));
|
|
120
|
-
const { generators: generators2 } = await import("./generate-
|
|
120
|
+
const { generators: generators2 } = await import("./generate-NLS7H2YS.js");
|
|
121
121
|
const generator = generators2[result.editor];
|
|
122
122
|
if (!generator) {
|
|
123
123
|
console.log(chalk.red(` Unknown editor '${result.editor}' in cache. Run 'hub generate' manually.`));
|
|
@@ -2305,6 +2305,13 @@ function buildGitignoreLines(config) {
|
|
|
2305
2305
|
`${memPath}/.lancedb/`
|
|
2306
2306
|
);
|
|
2307
2307
|
}
|
|
2308
|
+
if (hasAgentTeamsLeadMcp(config.mcps)) {
|
|
2309
|
+
lines.push(
|
|
2310
|
+
"",
|
|
2311
|
+
"# Agent teams runtime data",
|
|
2312
|
+
".agent-teams/"
|
|
2313
|
+
);
|
|
2314
|
+
}
|
|
2308
2315
|
return lines;
|
|
2309
2316
|
}
|
|
2310
2317
|
var generators = {
|
package/dist/index.js
CHANGED