@mandujs/cli 0.18.4 → 0.18.6

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.18.4",
3
+ "version": "0.18.6",
4
4
  "description": "Agent-Native Fullstack Framework - 에이전트가 코딩해도 아키텍처가 무너지지 않는 개발 OS",
5
5
  "type": "module",
6
6
  "main": "./src/main.ts",
@@ -32,7 +32,7 @@
32
32
  "access": "public"
33
33
  },
34
34
  "dependencies": {
35
- "@mandujs/core": "^0.18.6",
35
+ "@mandujs/core": "^0.18.10",
36
36
  "@mandujs/ate": "^0.17.0",
37
37
  "cfonts": "^3.3.0"
38
38
  },
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  startServer,
3
3
  startDevBundler,
4
+ buildClientBundles,
4
5
  createHMRServer,
5
6
  needsHydration,
6
7
  loadEnv,
@@ -237,6 +238,11 @@ export async function dev(options: DevOptions = {}): Promise<void> {
237
238
  });
238
239
  }
239
240
 
241
+ if (!hasIslands) {
242
+ // Island 없어도 DevTools 번들은 빌드 (dev 모드에서 _devtools.js 필요)
243
+ await buildClientBundles(manifest, rootDir, { minify: false });
244
+ }
245
+
240
246
  if (hasIslands && hmrEnabled) {
241
247
  // HMR 서버 시작
242
248
  hmrServer = createHMRServer(port);
@@ -28,6 +28,7 @@
28
28
  },
29
29
  "devDependencies": {
30
30
  "@mandujs/cli": "{{CLI_VERSION}}",
31
+ "@mandujs/mcp": "latest",
31
32
  "@tailwindcss/cli": "^4.1.0",
32
33
  "@types/react": "^19.2.0",
33
34
  "@types/react-dom": "^19.2.0",
@@ -25,6 +25,7 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@mandujs/cli": "{{CLI_VERSION}}",
28
+ "@mandujs/mcp": "latest",
28
29
  "@tailwindcss/cli": "^4.1.0",
29
30
  "@types/react": "^19.2.0",
30
31
  "@types/react-dom": "^19.2.0",