We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 825370f commit 0a9f8e3Copy full SHA for 0a9f8e3
src/cli.ts
@@ -453,9 +453,12 @@ Thumbs.db
453
console.log('✅ Knowledge project initialized successfully!');
454
console.log('');
455
console.log('📋 Next steps:');
456
- console.log(' 1. cd ' + path.relative(process.cwd(), targetDir));
457
- console.log(' 2. bun install');
458
- console.log(' 3. bun run dev');
+ if (targetDir !== '.') {
+ console.log(' 1. cd ' + path.relative(process.cwd(), targetDir));
+ }
459
+ console.log(' 1. knowledge dev');
460
+ console.log(' 2. knowledge build');
461
+ console.log(' 4. knowledge serve');
462
463
console.log('🌐 Your documentation will be available at http://localhost:3000');
464
}
0 commit comments