Merge pull request #50 from Kaelio/setup-path-hint-cleanup

fix(cli): remove redundant path resolution hints from project setup
This commit is contained in:
Luca Martial 2026-05-12 20:18:46 -04:00 committed by GitHub
commit 556563d654
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -204,8 +204,6 @@ async function promptForNewProjectDir(
const defaultProjectDir = join(projectDir, DEFAULT_NEW_PROJECT_FOLDER_NAME);
while (true) {
io.stdout.write(`│ Relative paths are resolved from:\n│ ${projectDir}\n`);
io.stdout.write(`│ Home paths are resolved from:\n│ ${homeDir}\n`);
const destinationChoice = await prompts.select({
message: 'Where should KTX create the project?',
options: [
@ -376,8 +374,6 @@ export async function runKtxSetupProjectStep(
}
if (choice === 'new-custom') {
io.stdout.write(`│ Relative paths are resolved from:\n│ ${projectDir}\n`);
io.stdout.write(`│ Home paths are resolved from:\n│ ${homeDir}\n`);
const rawPath = await prompts.text({
message: withTextInputNavigation('Project folder path'),
placeholder: './analytics-ktx, ~/analytics-ktx, or /Users/you/projects/analytics-ktx',