@arvoretech/hub 0.7.6 → 0.7.7
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.
|
@@ -121,7 +121,7 @@ async function checkAndAutoRegenerate(hubDir) {
|
|
|
121
121
|
return;
|
|
122
122
|
}
|
|
123
123
|
console.log(chalk.yellow("\n Detected outdated configs, auto-regenerating..."));
|
|
124
|
-
const { generators: generators2 } = await import("./generate-
|
|
124
|
+
const { generators: generators2 } = await import("./generate-PLZD6GZN.js");
|
|
125
125
|
const generator = generators2[result.editor];
|
|
126
126
|
if (!generator) {
|
|
127
127
|
console.log(chalk.red(` Unknown editor '${result.editor}' in cache. Run 'hub generate' manually.`));
|
|
@@ -1762,7 +1762,7 @@ function buildGitignoreLines(config) {
|
|
|
1762
1762
|
"tasks/"
|
|
1763
1763
|
);
|
|
1764
1764
|
if (config.memory) {
|
|
1765
|
-
const memPath = config.memory.path || "memories";
|
|
1765
|
+
const memPath = (config.memory.path || "memories").replace(/^\.\//, "");
|
|
1766
1766
|
lines.push(
|
|
1767
1767
|
"",
|
|
1768
1768
|
"# Memory vector store (generated from markdown files)",
|
package/dist/index.js
CHANGED