@zenithbuild/core 0.6.2 → 0.6.3
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/compiler/runtime/transformIR.ts +3 -3
- package/dist/cli.js +2 -0
- package/dist/zen-build.js +539 -269
- package/dist/zen-dev.js +539 -269
- package/dist/zen-preview.js +539 -269
- package/dist/zenith.js +539 -269
- package/package.json +2 -2
- package/runtime/bundle-generator.ts +26 -16
|
@@ -9,7 +9,7 @@ import { generateExpressionWrappers } from './wrapExpression'
|
|
|
9
9
|
import { generateDOMFunction } from './generateDOM'
|
|
10
10
|
import { generateHydrationRuntime, generateExpressionRegistry } from './generateHydrationBundle'
|
|
11
11
|
import { analyzeAllExpressions } from './dataExposure'
|
|
12
|
-
|
|
12
|
+
// Legacy navigation runtime removed - router now provided by @zenithbuild/router via bundle-generator.ts
|
|
13
13
|
import { extractStateDeclarations, extractProps, transformStateDeclarations } from '../parse/scriptAnalysis'
|
|
14
14
|
import { transformAllComponentScripts, emitImports } from '../transform/componentScriptTransformer'
|
|
15
15
|
|
|
@@ -52,8 +52,8 @@ export async function transformIR(ir: ZenIR): Promise<RuntimeCode> {
|
|
|
52
52
|
// Generate Phase 5 hydration runtime
|
|
53
53
|
const hydrationRuntime = generateHydrationRuntime()
|
|
54
54
|
|
|
55
|
-
//
|
|
56
|
-
const navigationRuntime =
|
|
55
|
+
// Phase 7 navigation runtime removed - router is provided by shared runtime bundle
|
|
56
|
+
const navigationRuntime = '' // No longer inlined per-page
|
|
57
57
|
|
|
58
58
|
// Generate expression registry initialization
|
|
59
59
|
const expressionRegistry = generateExpressionRegistry(ir.template.expressions)
|