create-claude-kanban 3.2.1 → 3.2.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.
- package/dist/index.js +10 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -682,8 +682,8 @@ async function promptProjectInfo() {
|
|
|
682
682
|
});
|
|
683
683
|
if (p.isCancel(types)) return null;
|
|
684
684
|
return {
|
|
685
|
-
name: name.trim(),
|
|
686
|
-
description: description.trim(),
|
|
685
|
+
name: (name ?? "").trim(),
|
|
686
|
+
description: (description ?? "").trim(),
|
|
687
687
|
types
|
|
688
688
|
};
|
|
689
689
|
}
|
|
@@ -1075,7 +1075,7 @@ async function promptContextFiles(targetDir) {
|
|
|
1075
1075
|
}
|
|
1076
1076
|
});
|
|
1077
1077
|
if (p3.isCancel(mdPath)) return null;
|
|
1078
|
-
claudeMdPath = path2.resolve(targetDir, mdPath.trim());
|
|
1078
|
+
claudeMdPath = path2.resolve(targetDir, (mdPath ?? "").trim());
|
|
1079
1079
|
try {
|
|
1080
1080
|
parsedContext = parseClaudeMd(claudeMdPath);
|
|
1081
1081
|
const summary = [];
|
|
@@ -1126,7 +1126,7 @@ async function promptContextFiles(targetDir) {
|
|
|
1126
1126
|
validate: (v) => (v ?? "").trim() ? void 0 : t("contextFiles.docPathValidation")
|
|
1127
1127
|
});
|
|
1128
1128
|
if (p3.isCancel(docPath)) return null;
|
|
1129
|
-
referenceDocs.push({ type: docType, path: docPath.trim() });
|
|
1129
|
+
referenceDocs.push({ type: docType, path: (docPath ?? "").trim() });
|
|
1130
1130
|
}
|
|
1131
1131
|
return {
|
|
1132
1132
|
claudeMdPath,
|
|
@@ -1270,9 +1270,9 @@ async function promptOrchestrator(projectName) {
|
|
|
1270
1270
|
});
|
|
1271
1271
|
if (p5.isCancel(constraints)) return null;
|
|
1272
1272
|
return {
|
|
1273
|
-
goals: goals.trim(),
|
|
1273
|
+
goals: (goals ?? "").trim(),
|
|
1274
1274
|
stage,
|
|
1275
|
-
constraints: constraints.trim()
|
|
1275
|
+
constraints: (constraints ?? "").trim()
|
|
1276
1276
|
};
|
|
1277
1277
|
}
|
|
1278
1278
|
|
|
@@ -1326,11 +1326,11 @@ async function promptMultiProject() {
|
|
|
1326
1326
|
]
|
|
1327
1327
|
});
|
|
1328
1328
|
if (p6.isCancel(shared)) return null;
|
|
1329
|
-
const nameStr = name.trim();
|
|
1329
|
+
const nameStr = (name ?? "").trim();
|
|
1330
1330
|
projects.push({
|
|
1331
1331
|
id: nameStr.toLowerCase().replace(/[^a-z0-9가-힣]/g, "-").replace(/-+/g, "-"),
|
|
1332
1332
|
name: nameStr,
|
|
1333
|
-
description: desc.trim(),
|
|
1333
|
+
description: (desc ?? "").trim(),
|
|
1334
1334
|
color,
|
|
1335
1335
|
sharedAgents: shared === "yes"
|
|
1336
1336
|
});
|
|
@@ -1364,7 +1364,7 @@ async function promptInfra(projectName) {
|
|
|
1364
1364
|
initialValue: `/${projectName.toLowerCase().replace(/[^a-z0-9]/g, "")}`
|
|
1365
1365
|
});
|
|
1366
1366
|
if (p7.isCancel(cmd)) return null;
|
|
1367
|
-
slackCommand = cmd.trim();
|
|
1367
|
+
slackCommand = (cmd ?? "").trim();
|
|
1368
1368
|
}
|
|
1369
1369
|
const portInput = await p7.text({
|
|
1370
1370
|
message: t("infra.portMsg"),
|
|
@@ -1387,7 +1387,7 @@ async function promptInfra(projectName) {
|
|
|
1387
1387
|
slackEnabled: slackChoice === "yes",
|
|
1388
1388
|
slackCommand,
|
|
1389
1389
|
port: parseInt(portInput, 10),
|
|
1390
|
-
targetDir: targetDir.trim()
|
|
1390
|
+
targetDir: (targetDir ?? "").trim()
|
|
1391
1391
|
};
|
|
1392
1392
|
}
|
|
1393
1393
|
|