@duckmind/dm-windows-x64 0.62.1 → 0.62.3
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.
|
@@ -19,7 +19,7 @@ import { runSimpleResearchMode } from "./simple-research.mjs";
|
|
|
19
19
|
import { createProgressTracker } from "./progress.mjs";
|
|
20
20
|
const __dir = fileURLToPath(new URL(".", import.meta.url)).replace(/^\/([A-Z]:)/, "$1");
|
|
21
21
|
const SEARCH_BIN = join(__dir, "..", "..", "bin", "search.mjs");
|
|
22
|
-
const DEFAULT_RESEARCH_BUNDLE_ROOT = join(process.cwd(), ".
|
|
22
|
+
const DEFAULT_RESEARCH_BUNDLE_ROOT = join(process.cwd(), ".dm", "greedysearch-research");
|
|
23
23
|
const MAX_PROMPT_CHARS = 28000;
|
|
24
24
|
function slugifyResearchName(value) {
|
|
25
25
|
const slug = String(value || "research").toLowerCase().replaceAll(/[^a-z0-9]+/g, "-").replaceAll(/^-|-$/g, "").slice(0, 60);
|