@mandujs/cli 0.9.19 → 0.9.21

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandujs/cli",
3
- "version": "0.9.19",
3
+ "version": "0.9.21",
4
4
  "description": "Agent-Native Fullstack Framework - 에이전트가 코딩해도 아키텍처가 무너지지 않는 개발 OS",
5
5
  "type": "module",
6
6
  "main": "./src/main.ts",
@@ -71,18 +71,18 @@ export async function init(options: InitOptions = {}): Promise<boolean> {
71
71
  return false;
72
72
  }
73
73
 
74
- // Create empty generated directories
75
- await fs.mkdir(path.join(targetDir, "apps/server/generated/routes"), { recursive: true });
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
  }
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^18.2.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@mandujs/cli": "^0.9.18",
16
+ "@mandujs/cli": "^0.9.20",
17
17
  "@types/react": "^18.2.0",
18
18
  "@types/react-dom": "^18.2.0",
19
19
  "typescript": "^5.0.0"