taskplane 0.24.25 → 0.24.26
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/bin/taskplane.mjs +5 -4
- package/package.json +1 -1
package/bin/taskplane.mjs
CHANGED
|
@@ -1747,9 +1747,9 @@ async function cmdInit(args) {
|
|
|
1747
1747
|
} catch {}
|
|
1748
1748
|
return null;
|
|
1749
1749
|
})();
|
|
1750
|
-
const workspaceTasksRoot = existingWorkspaceJson?.routing?.tasks_root
|
|
1750
|
+
const workspaceTasksRoot = (existingWorkspaceJson?.routing?.tasks_root
|
|
1751
1751
|
|| existingRootYaml?.routing?.tasks_root
|
|
1752
|
-
|| "taskplane-tasks";
|
|
1752
|
+
|| "taskplane-tasks").replace(/\\/g, "/");
|
|
1753
1753
|
const workspaceDefaultRepo = existingWorkspaceJson?.routing?.default_repo
|
|
1754
1754
|
|| existingRootYaml?.routing?.default_repo
|
|
1755
1755
|
|| configRepo;
|
|
@@ -2285,7 +2285,7 @@ function getPresetVars(preset, projectRoot, tasksRootOverride = null) {
|
|
|
2285
2285
|
max_lanes: 3,
|
|
2286
2286
|
worktree_prefix: `${slug}-wt`,
|
|
2287
2287
|
session_prefix: `${slug}-orch`,
|
|
2288
|
-
tasks_root: tasksRootOverride || "taskplane-tasks",
|
|
2288
|
+
tasks_root: (tasksRootOverride || "taskplane-tasks").replace(/\\/g, "/"),
|
|
2289
2289
|
default_area: "general",
|
|
2290
2290
|
default_prefix: "TP",
|
|
2291
2291
|
test_cmd,
|
|
@@ -2302,7 +2302,8 @@ async function getInteractiveVars(projectRoot, tasksRootOverride = null) {
|
|
|
2302
2302
|
const project_name = await ask("Project name", dirName);
|
|
2303
2303
|
const maxLanesInput = await ask("Max parallel lanes", "3");
|
|
2304
2304
|
const max_lanes = parseInt(maxLanesInput, 10) || 3;
|
|
2305
|
-
const
|
|
2305
|
+
const tasks_root_raw = tasksRootOverride || await ask("Tasks directory", "taskplane-tasks");
|
|
2306
|
+
const tasks_root = tasks_root_raw.trim().replace(/\\/g, "/").replace(/^\.\//g, "").replace(/\/+$/g, "");
|
|
2306
2307
|
const default_area = await ask("Default area name", "general");
|
|
2307
2308
|
const default_prefix = await ask("Task ID prefix", "TP");
|
|
2308
2309
|
const test_cmd = await ask("Test command (agents run this to verify work — blank to skip)", detected.test || "");
|