@mandujs/cli 0.4.1 → 0.4.2
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/build.ts +1 -1
package/package.json
CHANGED
package/src/commands/build.ts
CHANGED
|
@@ -35,7 +35,7 @@ export async function build(options: BuildOptions = {}): Promise<boolean> {
|
|
|
35
35
|
return false;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
const manifest = specResult.
|
|
38
|
+
const manifest = specResult.data!;
|
|
39
39
|
console.log(`✅ Spec 로드 완료: ${manifest.routes.length}개 라우트`);
|
|
40
40
|
|
|
41
41
|
// 2. Hydration이 필요한 라우트 확인
|