nexarch 0.12.28 → 0.12.29
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.
|
@@ -1877,8 +1877,8 @@ export async function initProject(args) {
|
|
|
1877
1877
|
pendingSteps.push({
|
|
1878
1878
|
step: stepNum++,
|
|
1879
1879
|
action: "describe_project",
|
|
1880
|
-
instruction: `Give the project (repository) entity a short description of what lives in this repo.`,
|
|
1881
|
-
command: `nexarch update-entity --key "${projectEntityKey}" --entity-type "project" --name "
|
|
1880
|
+
instruction: `Give the project (repository) entity a meaningful display name (not the raw directory name "${projectDirName}") and a short description of what lives in this repo.`,
|
|
1881
|
+
command: `nexarch update-entity --key "${projectEntityKey}" --entity-type "project" --name "..." --description "..."`,
|
|
1882
1882
|
});
|
|
1883
1883
|
}
|
|
1884
1884
|
if (!projectConstruct || !isMonorepo) {
|
|
@@ -2149,8 +2149,8 @@ export async function initProject(args) {
|
|
|
2149
2149
|
lines.push("REMAINING STEPS:");
|
|
2150
2150
|
let step = 1;
|
|
2151
2151
|
if (projectConstruct) {
|
|
2152
|
-
lines.push(` ${step++}. nexarch update-entity --key "${projectEntityKey}" --entity-type "project" --name "
|
|
2153
|
-
lines.push(` (short description of what lives in this repository)`);
|
|
2152
|
+
lines.push(` ${step++}. nexarch update-entity --key "${projectEntityKey}" --entity-type "project" --name "..." --description "..."`);
|
|
2153
|
+
lines.push(` (meaningful display name — not the raw directory name "${projectDirName}" — and a short description of what lives in this repository)`);
|
|
2154
2154
|
}
|
|
2155
2155
|
if (!projectConstruct || !isMonorepo) {
|
|
2156
2156
|
lines.push(` ${step++}. nexarch update-entity --key "${projectExternalKey}" --entity-type "${entityTypeOverride}"${entityTypeOverride === "application" ? ' --subtype "<subtype>" --icon "<lucide-icon>"' : ""} --name "..." --description "..."`);
|