@mandujs/cli 0.9.19 → 0.9.20
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/package.json +1 -1
- package/src/commands/init.ts +5 -5
package/package.json
CHANGED
package/src/commands/init.ts
CHANGED
|
@@ -71,18 +71,18 @@ export async function init(options: InitOptions = {}): Promise<boolean> {
|
|
|
71
71
|
return false;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
// Create
|
|
75
|
-
await fs.mkdir(path.join(targetDir, "
|
|
76
|
-
await fs.mkdir(path.join(targetDir, "apps/web/generated/routes"), { recursive: true });
|
|
74
|
+
// Create .mandu directory for build output
|
|
75
|
+
await fs.mkdir(path.join(targetDir, ".mandu/client"), { recursive: true });
|
|
77
76
|
|
|
78
77
|
console.log(`\n✅ 프로젝트 생성 완료!\n`);
|
|
79
78
|
console.log(`📍 위치: ${targetDir}`);
|
|
80
79
|
console.log(`\n🚀 시작하기:`);
|
|
81
80
|
console.log(` cd ${projectName}`);
|
|
82
81
|
console.log(` bun install`);
|
|
83
|
-
console.log(` bun run spec`);
|
|
84
|
-
console.log(` bun run generate`);
|
|
85
82
|
console.log(` bun run dev`);
|
|
83
|
+
console.log(`\n📂 파일 구조:`);
|
|
84
|
+
console.log(` app/page.tsx → http://localhost:3000/`);
|
|
85
|
+
console.log(` app/api/*/route.ts → API endpoints`);
|
|
86
86
|
|
|
87
87
|
return true;
|
|
88
88
|
}
|