@useavalon/avalon 0.1.13 → 0.1.14

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.
Files changed (230) hide show
  1. package/dist/mod.js +1 -0
  2. package/dist/src/build/integration-bundler-plugin.js +1 -0
  3. package/dist/src/build/integration-config.js +1 -0
  4. package/dist/src/build/integration-detection-plugin.js +1 -0
  5. package/dist/src/build/integration-resolver-plugin.js +1 -0
  6. package/dist/src/build/island-manifest.js +1 -0
  7. package/dist/src/build/island-types-generator.js +5 -0
  8. package/dist/src/build/mdx-island-transform.js +2 -0
  9. package/dist/src/build/mdx-plugin.js +1 -0
  10. package/dist/src/build/page-island-transform.js +3 -0
  11. package/dist/src/build/prop-extractors/index.js +1 -0
  12. package/dist/src/build/prop-extractors/lit.js +1 -0
  13. package/dist/src/build/prop-extractors/qwik.js +1 -0
  14. package/dist/src/build/prop-extractors/solid.js +1 -0
  15. package/dist/src/build/prop-extractors/svelte.js +1 -0
  16. package/dist/src/build/prop-extractors/vue.js +1 -0
  17. package/dist/src/build/sidecar-file-manager.js +1 -0
  18. package/dist/src/build/sidecar-renderer.js +6 -0
  19. package/dist/src/client/adapters/index.js +1 -0
  20. package/dist/src/client/components.js +1 -0
  21. package/dist/src/client/css-hmr-handler.js +1 -0
  22. package/dist/src/client/framework-adapter.js +13 -0
  23. package/dist/src/client/hmr-coordinator.js +1 -0
  24. package/dist/src/client/hmr-error-overlay.js +214 -0
  25. package/dist/src/client/main.js +39 -0
  26. package/dist/src/components/Image.js +1 -0
  27. package/dist/src/components/IslandErrorBoundary.js +1 -0
  28. package/dist/src/components/LayoutDataErrorBoundary.js +1 -0
  29. package/dist/src/components/LayoutErrorBoundary.js +1 -0
  30. package/dist/src/components/PersistentIsland.js +1 -0
  31. package/dist/src/components/StreamingErrorBoundary.js +1 -0
  32. package/dist/src/components/StreamingLayout.js +29 -0
  33. package/dist/src/core/components/component-analyzer.js +1 -0
  34. package/dist/src/core/components/component-detection.js +5 -0
  35. package/dist/src/core/components/enhanced-framework-detector.js +1 -0
  36. package/dist/src/core/components/framework-registry.js +1 -0
  37. package/dist/src/core/content/mdx-processor.js +1 -0
  38. package/dist/src/core/integrations/index.js +1 -0
  39. package/dist/src/core/integrations/loader.js +1 -0
  40. package/dist/src/core/integrations/registry.js +1 -0
  41. package/dist/src/core/islands/island-persistence.js +1 -0
  42. package/dist/src/core/islands/island-state-serializer.js +1 -0
  43. package/dist/src/core/islands/persistent-island-context.js +1 -0
  44. package/dist/src/core/islands/use-persistent-state.js +1 -0
  45. package/dist/src/core/layout/enhanced-layout-resolver.js +1 -0
  46. package/dist/src/core/layout/layout-cache-manager.js +1 -0
  47. package/dist/src/core/layout/layout-composer.js +1 -0
  48. package/dist/src/core/layout/layout-data-loader.js +1 -0
  49. package/dist/src/core/layout/layout-discovery.js +1 -0
  50. package/dist/src/core/layout/layout-matcher.js +1 -0
  51. package/dist/src/core/layout/layout-types.js +1 -0
  52. package/dist/src/core/modules/framework-module-resolver.js +1 -0
  53. package/dist/src/islands/component-analysis.js +1 -0
  54. package/dist/src/islands/css-utils.js +17 -0
  55. package/dist/src/islands/discovery/index.js +1 -0
  56. package/dist/src/islands/discovery/registry.js +1 -0
  57. package/dist/src/islands/discovery/resolver.js +2 -0
  58. package/dist/src/islands/discovery/scanner.js +1 -0
  59. package/dist/src/islands/discovery/types.js +1 -0
  60. package/dist/src/islands/discovery/validator.js +18 -0
  61. package/dist/src/islands/discovery/watcher.js +1 -0
  62. package/dist/src/islands/framework-detection.js +1 -0
  63. package/dist/src/islands/integration-loader.js +1 -0
  64. package/dist/src/islands/island.js +1 -0
  65. package/dist/src/islands/render-cache.js +1 -0
  66. package/dist/src/islands/types.js +1 -0
  67. package/dist/src/islands/universal-css-collector.js +5 -0
  68. package/dist/src/islands/universal-head-collector.js +2 -0
  69. package/dist/src/layout-system.js +1 -0
  70. package/dist/src/middleware/discovery.js +1 -0
  71. package/dist/src/middleware/executor.js +1 -0
  72. package/dist/src/middleware/index.js +1 -0
  73. package/dist/src/middleware/types.js +1 -0
  74. package/dist/src/nitro/build-config.js +1 -0
  75. package/dist/src/nitro/config.js +1 -0
  76. package/dist/src/nitro/error-handler.js +198 -0
  77. package/dist/src/nitro/index.js +1 -0
  78. package/dist/src/nitro/island-manifest.js +2 -0
  79. package/dist/src/nitro/middleware-adapter.js +1 -0
  80. package/dist/src/nitro/renderer.js +183 -0
  81. package/dist/src/nitro/route-discovery.js +1 -0
  82. package/dist/src/nitro/types.js +1 -0
  83. package/dist/src/render/collect-css.js +3 -0
  84. package/dist/src/render/error-pages.js +48 -0
  85. package/dist/src/render/isolated-ssr-renderer.js +1 -0
  86. package/dist/src/render/ssr.js +90 -0
  87. package/dist/src/schemas/api.js +1 -0
  88. package/dist/src/schemas/core.js +1 -0
  89. package/dist/src/schemas/index.js +1 -0
  90. package/dist/src/schemas/layout.js +1 -0
  91. package/dist/src/schemas/routing/index.js +1 -0
  92. package/dist/src/schemas/routing.js +1 -0
  93. package/dist/src/types/as-island.js +1 -0
  94. package/dist/src/types/layout.js +1 -0
  95. package/dist/src/types/routing.js +1 -0
  96. package/dist/src/types/types.js +1 -0
  97. package/dist/src/utils/dev-logger.js +12 -0
  98. package/dist/src/utils/fs.js +1 -0
  99. package/dist/src/vite-plugin/auto-discover.js +1 -0
  100. package/dist/src/vite-plugin/config.js +1 -0
  101. package/dist/src/vite-plugin/errors.js +1 -0
  102. package/dist/src/vite-plugin/image-optimization.js +45 -0
  103. package/dist/src/vite-plugin/integration-activator.js +1 -0
  104. package/dist/src/vite-plugin/island-sidecar-plugin.js +1 -0
  105. package/dist/src/vite-plugin/module-discovery.js +1 -0
  106. package/dist/src/vite-plugin/nitro-integration.js +42 -0
  107. package/dist/src/vite-plugin/plugin.js +1 -0
  108. package/dist/src/vite-plugin/types.js +1 -0
  109. package/dist/src/vite-plugin/validation.js +2 -0
  110. package/package.json +14 -20
  111. package/mod.ts +0 -302
  112. package/src/build/integration-bundler-plugin.ts +0 -116
  113. package/src/build/integration-config.ts +0 -168
  114. package/src/build/integration-detection-plugin.ts +0 -117
  115. package/src/build/integration-resolver-plugin.ts +0 -90
  116. package/src/build/island-manifest.ts +0 -269
  117. package/src/build/island-types-generator.ts +0 -476
  118. package/src/build/mdx-island-transform.ts +0 -464
  119. package/src/build/mdx-plugin.ts +0 -98
  120. package/src/build/page-island-transform.ts +0 -598
  121. package/src/build/prop-extractors/index.ts +0 -21
  122. package/src/build/prop-extractors/lit.ts +0 -140
  123. package/src/build/prop-extractors/qwik.ts +0 -16
  124. package/src/build/prop-extractors/solid.ts +0 -125
  125. package/src/build/prop-extractors/svelte.ts +0 -194
  126. package/src/build/prop-extractors/vue.ts +0 -111
  127. package/src/build/sidecar-file-manager.ts +0 -104
  128. package/src/build/sidecar-renderer.ts +0 -30
  129. package/src/client/adapters/index.ts +0 -21
  130. package/src/client/components.ts +0 -35
  131. package/src/client/css-hmr-handler.ts +0 -344
  132. package/src/client/framework-adapter.ts +0 -462
  133. package/src/client/hmr-coordinator.ts +0 -396
  134. package/src/client/hmr-error-overlay.js +0 -533
  135. package/src/client/main.js +0 -824
  136. package/src/components/Image.tsx +0 -123
  137. package/src/components/IslandErrorBoundary.tsx +0 -145
  138. package/src/components/LayoutDataErrorBoundary.tsx +0 -141
  139. package/src/components/LayoutErrorBoundary.tsx +0 -127
  140. package/src/components/PersistentIsland.tsx +0 -52
  141. package/src/components/StreamingErrorBoundary.tsx +0 -233
  142. package/src/components/StreamingLayout.tsx +0 -538
  143. package/src/core/components/component-analyzer.ts +0 -192
  144. package/src/core/components/component-detection.ts +0 -508
  145. package/src/core/components/enhanced-framework-detector.ts +0 -500
  146. package/src/core/components/framework-registry.ts +0 -563
  147. package/src/core/content/mdx-processor.ts +0 -46
  148. package/src/core/integrations/index.ts +0 -19
  149. package/src/core/integrations/loader.ts +0 -125
  150. package/src/core/integrations/registry.ts +0 -175
  151. package/src/core/islands/island-persistence.ts +0 -325
  152. package/src/core/islands/island-state-serializer.ts +0 -258
  153. package/src/core/islands/persistent-island-context.tsx +0 -80
  154. package/src/core/islands/use-persistent-state.ts +0 -68
  155. package/src/core/layout/enhanced-layout-resolver.ts +0 -322
  156. package/src/core/layout/layout-cache-manager.ts +0 -485
  157. package/src/core/layout/layout-composer.ts +0 -357
  158. package/src/core/layout/layout-data-loader.ts +0 -516
  159. package/src/core/layout/layout-discovery.ts +0 -243
  160. package/src/core/layout/layout-matcher.ts +0 -299
  161. package/src/core/layout/layout-types.ts +0 -110
  162. package/src/core/modules/framework-module-resolver.ts +0 -273
  163. package/src/islands/component-analysis.ts +0 -213
  164. package/src/islands/css-utils.ts +0 -565
  165. package/src/islands/discovery/index.ts +0 -80
  166. package/src/islands/discovery/registry.ts +0 -340
  167. package/src/islands/discovery/resolver.ts +0 -477
  168. package/src/islands/discovery/scanner.ts +0 -386
  169. package/src/islands/discovery/types.ts +0 -117
  170. package/src/islands/discovery/validator.ts +0 -544
  171. package/src/islands/discovery/watcher.ts +0 -368
  172. package/src/islands/framework-detection.ts +0 -428
  173. package/src/islands/integration-loader.ts +0 -490
  174. package/src/islands/island.tsx +0 -565
  175. package/src/islands/render-cache.ts +0 -550
  176. package/src/islands/types.ts +0 -80
  177. package/src/islands/universal-css-collector.ts +0 -157
  178. package/src/islands/universal-head-collector.ts +0 -137
  179. package/src/layout-system.ts +0 -218
  180. package/src/middleware/discovery.ts +0 -268
  181. package/src/middleware/executor.ts +0 -315
  182. package/src/middleware/index.ts +0 -76
  183. package/src/middleware/types.ts +0 -99
  184. package/src/nitro/build-config.ts +0 -576
  185. package/src/nitro/config.ts +0 -483
  186. package/src/nitro/error-handler.ts +0 -636
  187. package/src/nitro/index.ts +0 -173
  188. package/src/nitro/island-manifest.ts +0 -584
  189. package/src/nitro/middleware-adapter.ts +0 -260
  190. package/src/nitro/renderer.ts +0 -1471
  191. package/src/nitro/route-discovery.ts +0 -439
  192. package/src/nitro/types.ts +0 -321
  193. package/src/render/collect-css.ts +0 -198
  194. package/src/render/error-pages.ts +0 -79
  195. package/src/render/isolated-ssr-renderer.ts +0 -654
  196. package/src/render/ssr.ts +0 -1030
  197. package/src/schemas/api.ts +0 -30
  198. package/src/schemas/core.ts +0 -64
  199. package/src/schemas/index.ts +0 -212
  200. package/src/schemas/layout.ts +0 -279
  201. package/src/schemas/routing/index.ts +0 -38
  202. package/src/schemas/routing.ts +0 -376
  203. package/src/types/as-island.ts +0 -20
  204. package/src/types/layout.ts +0 -285
  205. package/src/types/routing.ts +0 -555
  206. package/src/types/types.ts +0 -5
  207. package/src/utils/dev-logger.ts +0 -299
  208. package/src/utils/fs.ts +0 -151
  209. package/src/vite-plugin/auto-discover.ts +0 -551
  210. package/src/vite-plugin/config.ts +0 -266
  211. package/src/vite-plugin/errors.ts +0 -127
  212. package/src/vite-plugin/image-optimization.ts +0 -156
  213. package/src/vite-plugin/integration-activator.ts +0 -126
  214. package/src/vite-plugin/island-sidecar-plugin.ts +0 -176
  215. package/src/vite-plugin/module-discovery.ts +0 -189
  216. package/src/vite-plugin/nitro-integration.ts +0 -1354
  217. package/src/vite-plugin/plugin.ts +0 -403
  218. package/src/vite-plugin/types.ts +0 -327
  219. package/src/vite-plugin/validation.ts +0 -228
  220. /package/{src → dist/src}/client/types/framework-runtime.d.ts +0 -0
  221. /package/{src → dist/src}/client/types/vite-hmr.d.ts +0 -0
  222. /package/{src → dist/src}/client/types/vite-virtual-modules.d.ts +0 -0
  223. /package/{src → dist/src}/layout-system.d.ts +0 -0
  224. /package/{src → dist/src}/types/image.d.ts +0 -0
  225. /package/{src → dist/src}/types/index.d.ts +0 -0
  226. /package/{src → dist/src}/types/island-jsx.d.ts +0 -0
  227. /package/{src → dist/src}/types/island-prop.d.ts +0 -0
  228. /package/{src → dist/src}/types/mdx.d.ts +0 -0
  229. /package/{src → dist/src}/types/urlpattern.d.ts +0 -0
  230. /package/{src → dist/src}/types/vite-env.d.ts +0 -0
@@ -1,99 +0,0 @@
1
- /**
2
- * Nitro-Aligned Middleware Types
3
- *
4
- * This module defines types for Avalon's middleware system that align with
5
- * Nitro's conventions while preserving route-scoped middleware features.
6
- *
7
- * Key differences from old middleware system:
8
- * - Handler signature: (event: H3Event) => void | Response | Promise<void | Response>
9
- * - Return void to continue, return Response to terminate
10
- * - Uses event.context for data passing instead of custom state/locals
11
- *
12
- * Requirements: 1.1
13
- */
14
-
15
- import type { H3Event } from 'h3';
16
-
17
- /**
18
- * Nitro-aligned middleware handler signature
19
- *
20
- * This signature matches Nitro's middleware conventions:
21
- * - Return nothing (void/undefined) to continue to next middleware
22
- * - Return a Response to terminate the chain and send that response
23
- * - Throw an error to trigger Nitro's error handling
24
- *
25
- * @example
26
- * ```ts
27
- * const handler: MiddlewareHandler = async (event) => {
28
- * // Check auth
29
- * if (!event.context.user) {
30
- * return new Response('Unauthorized', { status: 401 });
31
- * }
32
- * // Continue to next middleware
33
- * };
34
- * ```
35
- */
36
- export type MiddlewareHandler = (
37
- event: H3Event
38
- ) => void | Response | Promise<void | Response>;
39
-
40
- /**
41
- * Route-scoped middleware file export interface
42
- *
43
- * Middleware files should export a default function matching the MiddlewareHandler signature.
44
- *
45
- * @example
46
- * ```ts
47
- * // src/pages/admin/_middleware.ts
48
- * export default async (event) => {
49
- * // middleware logic
50
- * };
51
- * ```
52
- */
53
- export interface MiddlewareFileExport {
54
- /** Default export must be a MiddlewareHandler function */
55
- default: MiddlewareHandler;
56
- }
57
-
58
- /**
59
- * Discovered middleware route configuration
60
- *
61
- * Represents a middleware file discovered during scanning, with its
62
- * URL pattern, file path, execution priority, and type.
63
- */
64
- export interface MiddlewareRoute {
65
- /** URL pattern for matching requests */
66
- pattern: URLPattern;
67
- /** Absolute path to the middleware file */
68
- filePath: string;
69
- /** Execution priority (lower numbers execute first) */
70
- priority: number;
71
- /** Middleware type - determines which routes it applies to */
72
- type: 'global' | 'pages';
73
- }
74
-
75
- /**
76
- * Middleware discovery options
77
- */
78
- export interface MiddlewareDiscoveryOptions {
79
- /** Base directory to scan (e.g., 'src') */
80
- baseDir: string;
81
- /** File pattern to match (default: '_middleware.ts') */
82
- filePattern?: string;
83
- /** Directories to exclude from scanning */
84
- excludeDirs?: string[];
85
- /** Enable development mode logging */
86
- devMode?: boolean;
87
- }
88
-
89
- /**
90
- * Middleware execution options
91
- */
92
- export interface MiddlewareExecutorOptions {
93
- /** Enable development mode logging */
94
- devMode?: boolean;
95
- /** Timeout for middleware execution in milliseconds */
96
- timeout?: number;
97
- }
98
-
99
-
@@ -1,576 +0,0 @@
1
- /**
2
- * Nitro Build Configuration Module for Avalon
3
- *
4
- * This module provides build configuration utilities for integrating Nitro
5
- * with Avalon's Vite-based build pipeline. It handles:
6
- * - Vite client build configuration
7
- * - Nitro server build configuration
8
- * - Preset-specific output configuration
9
- * - Source map generation
10
- *
11
- * @module nitro/build-config
12
- */
13
-
14
- import type { Plugin, UserConfig, BuildOptions } from "vite";
15
- import type { ResolvedAvalonConfig } from "../vite-plugin/types.ts";
16
- import type { AvalonNitroConfig } from "./config.ts";
17
- import { DEFAULT_NITRO_CONFIG, VALID_V3_PRESETS } from "./config.ts";
18
-
19
- /**
20
- * Build mode for the Avalon application
21
- */
22
- export type BuildMode = "client" | "server" | "both";
23
-
24
- /**
25
- * Sourcemap option type
26
- */
27
- export type SourcemapOption = boolean | "inline" | "hidden";
28
-
29
- /**
30
- * Minify option type
31
- */
32
- export type MinifyOption = boolean | "oxc" | "esbuild" | "terser";
33
-
34
- /**
35
- * Preset-specific build output configuration
36
- */
37
- export interface PresetOutputConfig {
38
- /** Output directory for the preset */
39
- outputDir: string;
40
- /** Server entry file name */
41
- serverEntry: string;
42
- /** Whether the preset supports streaming */
43
- supportsStreaming: boolean;
44
- /** Whether the preset requires bundled dependencies */
45
- bundleDependencies: boolean;
46
- /** Additional files to include in output */
47
- additionalFiles?: string[];
48
- /** Environment-specific configuration */
49
- env?: Record<string, string>;
50
- }
51
-
52
- /**
53
- * Avalon build configuration options
54
- */
55
- export interface AvalonBuildConfig {
56
- /** Build mode: client, server, or both */
57
- mode: BuildMode;
58
- /** Output directory for client assets */
59
- clientOutDir: string;
60
- /** Output directory for server bundle */
61
- serverOutDir: string;
62
- /** Enable source maps */
63
- sourcemap: SourcemapOption;
64
- /** Minify output */
65
- minify: MinifyOption;
66
- /** Target environment */
67
- target: string | string[];
68
- /** Enable SSR build */
69
- ssr: boolean;
70
- /** Nitro preset for deployment */
71
- preset: string;
72
- /** Enable verbose logging */
73
- verbose: boolean;
74
- /** Nitro v3: Compatibility date for preset features (YYYY-MM-DD) */
75
- compatibilityDate?: string;
76
- /** Nitro v3: Dependencies to trace instead of bundle */
77
- traceDeps?: string[];
78
- /** Nitro v3: Rolldown-specific configuration */
79
- rolldownConfig?: Record<string, unknown>;
80
- /** Nitro v3: Custom server entry point */
81
- serverEntry?: string;
82
- }
83
-
84
- /**
85
- * Default build configuration values
86
- */
87
- export const DEFAULT_BUILD_CONFIG: AvalonBuildConfig = {
88
- mode: "both",
89
- clientOutDir: "dist/client",
90
- serverOutDir: "dist/server",
91
- sourcemap: true,
92
- minify: "oxc",
93
- target: "es2020",
94
- ssr: true,
95
- preset: "node_server",
96
- verbose: false,
97
- };
98
-
99
- /**
100
- * Preset-specific output configurations
101
- */
102
- export const PRESET_OUTPUT_CONFIGS: Record<string, PresetOutputConfig> = {
103
- "node_server": {
104
- outputDir: ".output",
105
- serverEntry: "server/index.mjs",
106
- supportsStreaming: true,
107
- bundleDependencies: false,
108
- },
109
- "node_middleware": {
110
- outputDir: ".output",
111
- serverEntry: "server/index.mjs",
112
- supportsStreaming: true,
113
- bundleDependencies: false,
114
- },
115
- "vercel": {
116
- outputDir: ".vercel/output",
117
- serverEntry: "functions/render.func/index.mjs",
118
- supportsStreaming: true,
119
- bundleDependencies: true,
120
- additionalFiles: ["config.json"],
121
- },
122
- "cloudflare_module": {
123
- outputDir: "dist",
124
- serverEntry: "server/index.mjs",
125
- supportsStreaming: false,
126
- bundleDependencies: true,
127
- },
128
- "cloudflare_pages": {
129
- outputDir: "dist",
130
- serverEntry: "_worker.js",
131
- supportsStreaming: false,
132
- bundleDependencies: true,
133
- additionalFiles: ["_routes.json"],
134
- },
135
- "deno_deploy": {
136
- outputDir: ".output",
137
- serverEntry: "server/index.ts",
138
- supportsStreaming: true,
139
- bundleDependencies: false,
140
- },
141
- "deno_server": {
142
- outputDir: ".output",
143
- serverEntry: "server/index.ts",
144
- supportsStreaming: true,
145
- bundleDependencies: false,
146
- },
147
- "netlify_functions": {
148
- outputDir: ".netlify",
149
- serverEntry: "functions-internal/render.mjs",
150
- supportsStreaming: true,
151
- bundleDependencies: true,
152
- },
153
- "netlify_edge": {
154
- outputDir: ".netlify/edge-functions",
155
- serverEntry: "render.js",
156
- supportsStreaming: true,
157
- bundleDependencies: true,
158
- },
159
- "aws_lambda": {
160
- outputDir: ".output",
161
- serverEntry: "server/index.mjs",
162
- supportsStreaming: false,
163
- bundleDependencies: true,
164
- },
165
- "azure_swa": {
166
- outputDir: ".output",
167
- serverEntry: "server/index.mjs",
168
- supportsStreaming: false,
169
- bundleDependencies: true,
170
- },
171
- "firebase_functions": {
172
- outputDir: ".output",
173
- serverEntry: "server/index.mjs",
174
- supportsStreaming: true,
175
- bundleDependencies: true,
176
- },
177
- "render_com": {
178
- outputDir: ".output",
179
- serverEntry: "server/index.mjs",
180
- supportsStreaming: true,
181
- bundleDependencies: false,
182
- },
183
- "static": {
184
- outputDir: "dist",
185
- serverEntry: "",
186
- supportsStreaming: false,
187
- bundleDependencies: false,
188
- },
189
- "browser": {
190
- outputDir: "dist",
191
- serverEntry: "",
192
- supportsStreaming: false,
193
- bundleDependencies: true,
194
- },
195
- };
196
-
197
- /**
198
- * Creates the Vite client build configuration
199
- *
200
- * @param avalonConfig - Resolved Avalon configuration
201
- * @param buildConfig - Build configuration options
202
- * @returns Vite build options for client build
203
- */
204
- export function createClientBuildConfig(
205
- avalonConfig: ResolvedAvalonConfig,
206
- buildConfig: Partial<AvalonBuildConfig> = {}
207
- ): BuildOptions {
208
- const config = { ...DEFAULT_BUILD_CONFIG, ...buildConfig };
209
-
210
- return {
211
- outDir: config.clientOutDir,
212
- emptyOutDir: true,
213
- sourcemap: config.sourcemap,
214
- minify: config.minify,
215
- target: config.target,
216
- rolldownOptions: {
217
- output: {
218
- entryFileNames: "[name].[hash].js",
219
- chunkFileNames: "chunks/[name].[hash].js",
220
- assetFileNames: "assets/[name].[hash].[ext]",
221
- codeSplitting: {
222
- groups: [
223
- { name: "vendor-react", test: /node_modules\/(react|react-dom)/ },
224
- { name: "vendor-vue", test: /node_modules\/(vue|@vue)/ },
225
- { name: "vendor-svelte", test: /node_modules\/svelte/ },
226
- { name: "vendor-preact", test: /node_modules\/preact/ },
227
- { name: "vendor-solid", test: /node_modules\/solid-js/ },
228
- { name: "vendor-lit", test: /node_modules\/(lit|@lit)/ },
229
- { name: "vendor", test: /node_modules/ },
230
- { name: "islands", test: /\/islands\// },
231
- ],
232
- },
233
- },
234
- },
235
- reportCompressedSize: !avalonConfig.isDev,
236
- cssCodeSplit: true,
237
- };
238
- }
239
-
240
- /**
241
- * Creates the Vite server build configuration for Nitro
242
- *
243
- * @param avalonConfig - Resolved Avalon configuration
244
- * @param nitroConfig - Nitro configuration
245
- * @param buildConfig - Build configuration options
246
- * @returns Vite build options for server build
247
- */
248
- export function createServerBuildConfig(
249
- avalonConfig: ResolvedAvalonConfig,
250
- nitroConfig: AvalonNitroConfig,
251
- buildConfig: Partial<AvalonBuildConfig> = {}
252
- ): BuildOptions {
253
- const config = { ...DEFAULT_BUILD_CONFIG, ...buildConfig };
254
- const preset = nitroConfig.preset ?? DEFAULT_NITRO_CONFIG.preset;
255
- const presetConfig = PRESET_OUTPUT_CONFIGS[preset] ?? PRESET_OUTPUT_CONFIGS["node_server"];
256
-
257
- return {
258
- outDir: config.serverOutDir,
259
- emptyOutDir: true,
260
- sourcemap: config.sourcemap,
261
- minify: config.minify,
262
- target: config.target,
263
- ssr: true,
264
- rolldownOptions: {
265
- input: {
266
- index: "./server/index.ts",
267
- },
268
- output: {
269
- format: "esm",
270
- entryFileNames: "[name].mjs",
271
- chunkFileNames: "chunks/[name].[hash].mjs",
272
- preserveModules: !presetConfig.bundleDependencies,
273
- },
274
- external: presetConfig.bundleDependencies
275
- ? []
276
- : getServerExternals(preset),
277
- },
278
- };
279
- }
280
-
281
- /**
282
- * Gets external dependencies for server build based on preset
283
- *
284
- * @param preset - Nitro preset name
285
- * @returns Array of external dependency patterns
286
- */
287
- function getServerExternals(preset: string): (string | RegExp)[] {
288
- const baseExternals: (string | RegExp)[] = [
289
- /^node:/,
290
- /^deno:/,
291
- ];
292
-
293
- switch (preset) {
294
- case "deno_deploy":
295
- case "deno_server":
296
- return [...baseExternals];
297
-
298
- case "node_server":
299
- return [
300
- ...baseExternals,
301
- /^[a-z@]/i,
302
- ];
303
-
304
- default:
305
- return baseExternals;
306
- }
307
- }
308
-
309
- /**
310
- * Gets the preset output configuration
311
- *
312
- * @param preset - Nitro preset name
313
- * @returns Preset output configuration
314
- */
315
- export function getPresetOutputConfig(preset: string): PresetOutputConfig {
316
- return PRESET_OUTPUT_CONFIGS[preset] ?? PRESET_OUTPUT_CONFIGS["node_server"];
317
- }
318
-
319
- /**
320
- * Checks if a preset supports streaming SSR
321
- *
322
- * @param preset - Nitro preset name
323
- * @returns True if the preset supports streaming
324
- */
325
- export function presetSupportsStreaming(preset: string): boolean {
326
- const config = getPresetOutputConfig(preset);
327
- return config.supportsStreaming;
328
- }
329
-
330
- /**
331
- * Creates the combined build configuration for both client and server
332
- *
333
- * @param avalonConfig - Resolved Avalon configuration
334
- * @param nitroConfig - Nitro configuration
335
- * @param buildConfig - Build configuration options
336
- * @returns Combined Vite user config
337
- */
338
- export function createCombinedBuildConfig(
339
- avalonConfig: ResolvedAvalonConfig,
340
- nitroConfig: AvalonNitroConfig,
341
- buildConfig: Partial<AvalonBuildConfig> = {}
342
- ): Partial<UserConfig> {
343
- const preset = nitroConfig.preset ?? DEFAULT_NITRO_CONFIG.preset;
344
- const presetConfig = getPresetOutputConfig(preset);
345
-
346
- return {
347
- build: {
348
- ...createClientBuildConfig(avalonConfig, buildConfig),
349
- outDir: presetConfig.outputDir,
350
- },
351
- define: {
352
- __DEV__: false,
353
- __PROD__: true,
354
- "process.env.NODE_ENV": JSON.stringify("production"),
355
- ...createPresetDefines(preset, presetConfig),
356
- },
357
- };
358
- }
359
-
360
- /**
361
- * Creates preset-specific define constants
362
- */
363
- function createPresetDefines(
364
- preset: string,
365
- presetConfig: PresetOutputConfig
366
- ): Record<string, string> {
367
- const defines: Record<string, string> = {
368
- __NITRO_PRESET__: JSON.stringify(preset),
369
- __SUPPORTS_STREAMING__: JSON.stringify(presetConfig.supportsStreaming),
370
- };
371
-
372
- if (presetConfig.env) {
373
- for (const [key, value] of Object.entries(presetConfig.env)) {
374
- defines[`process.env.${key}`] = JSON.stringify(value);
375
- }
376
- }
377
-
378
- return defines;
379
- }
380
-
381
- /**
382
- * Creates a Vite plugin for Nitro build integration
383
- */
384
- export function createNitroBuildPlugin(
385
- avalonConfig: ResolvedAvalonConfig,
386
- nitroConfig: AvalonNitroConfig
387
- ): Plugin {
388
- const preset = nitroConfig.preset ?? DEFAULT_NITRO_CONFIG.preset;
389
- const presetConfig = getPresetOutputConfig(preset);
390
-
391
- return {
392
- name: "avalon:nitro-build",
393
- enforce: "post",
394
-
395
- config(_config: UserConfig, { command }: { command: string }) {
396
- if (command !== "build") {
397
- return;
398
- }
399
-
400
- return createCombinedBuildConfig(avalonConfig, nitroConfig, {
401
- sourcemap: true,
402
- verbose: avalonConfig.verbose,
403
- });
404
- },
405
-
406
- buildStart() {
407
- if (avalonConfig.verbose) {
408
- console.log("🚀 Avalon Nitro build starting...");
409
- console.log(` Preset: ${preset}`);
410
- console.log(` Output: ${presetConfig.outputDir}`);
411
- console.log(` Streaming: ${presetConfig.supportsStreaming}`);
412
- }
413
- },
414
-
415
- writeBundle() {
416
- if (avalonConfig.verbose) {
417
- console.log("✅ Avalon client build complete");
418
- }
419
- },
420
-
421
- closeBundle() {
422
- if (avalonConfig.verbose) {
423
- console.log("📦 Avalon build finished");
424
- console.log(` Output directory: ${presetConfig.outputDir}`);
425
- }
426
- },
427
- };
428
- }
429
-
430
- /**
431
- * Validates build configuration
432
- */
433
- export function validateBuildConfig(
434
- config: Partial<AvalonBuildConfig>
435
- ): { valid: boolean; errors: string[] } {
436
- const errors: string[] = [];
437
-
438
- if (config.preset) {
439
- if (!VALID_V3_PRESETS.includes(config.preset)) {
440
- errors.push(
441
- `Unknown preset: ${config.preset}. Valid presets: ${VALID_V3_PRESETS.join(", ")}`
442
- );
443
- }
444
- }
445
-
446
- if (config.mode && !["client", "server", "both"].includes(config.mode)) {
447
- errors.push(`Invalid build mode: ${config.mode}. Must be 'client', 'server', or 'both'`);
448
- }
449
-
450
- if (
451
- config.sourcemap !== undefined &&
452
- typeof config.sourcemap !== "boolean" &&
453
- !["inline", "hidden"].includes(config.sourcemap as string)
454
- ) {
455
- errors.push(`Invalid sourcemap option: ${config.sourcemap}`);
456
- }
457
-
458
- return {
459
- valid: errors.length === 0,
460
- errors,
461
- };
462
- }
463
-
464
- /**
465
- * Source map configuration options
466
- */
467
- export interface SourceMapConfig {
468
- /** Enable source maps */
469
- enabled: boolean;
470
- /** Source map type: true for external, 'inline' for inline, 'hidden' for hidden */
471
- type: SourcemapOption;
472
- /** Include source content in source maps */
473
- includeContent: boolean;
474
- /** Source map URL prefix */
475
- sourceRoot?: string;
476
- }
477
-
478
- /**
479
- * Default source map configuration
480
- */
481
- export const DEFAULT_SOURCEMAP_CONFIG: SourceMapConfig = {
482
- enabled: true,
483
- type: true,
484
- includeContent: true,
485
- };
486
-
487
- /**
488
- * Creates source map configuration based on environment and preset
489
- */
490
- export function createSourceMapConfig(
491
- preset: string,
492
- isDev: boolean
493
- ): SourceMapConfig {
494
- if (isDev) {
495
- return {
496
- enabled: true,
497
- type: true,
498
- includeContent: true,
499
- };
500
- }
501
-
502
- if (
503
- preset.includes("edge") ||
504
- preset.includes("cloudflare") ||
505
- preset.includes("lambda")
506
- ) {
507
- return {
508
- enabled: true,
509
- type: "hidden",
510
- includeContent: false,
511
- };
512
- }
513
-
514
- return {
515
- enabled: true,
516
- type: true,
517
- includeContent: true,
518
- };
519
- }
520
-
521
- /**
522
- * Gets the Vite sourcemap option from SourceMapConfig
523
- */
524
- export function getViteSourceMapOption(
525
- config: SourceMapConfig
526
- ): SourcemapOption {
527
- if (!config.enabled) {
528
- return false;
529
- }
530
- return config.type;
531
- }
532
-
533
- /**
534
- * Creates a Vite plugin for source map handling
535
- */
536
- export function createSourceMapPlugin(config: SourceMapConfig): Plugin {
537
- return {
538
- name: "avalon:sourcemap",
539
- enforce: "post",
540
-
541
- config(_viteConfig: UserConfig, { command }: { command: string }) {
542
- if (command !== "build") {
543
- return;
544
- }
545
-
546
- return {
547
- build: {
548
- sourcemap: getViteSourceMapOption(config),
549
- },
550
- ...(config.sourceRoot && {
551
- rolldownOptions: {
552
- output: {
553
- sourcemapPathTransform: (relativeSourcePath: string) => {
554
- return `${config.sourceRoot}/${relativeSourcePath}`;
555
- },
556
- },
557
- },
558
- }),
559
- };
560
- },
561
-
562
- generateBundle(_options: unknown, bundle: Record<string, unknown>) {
563
- if (!config.enabled) {
564
- return;
565
- }
566
-
567
- const sourceMapCount = Object.keys(bundle).filter(
568
- (key) => key.endsWith(".map")
569
- ).length;
570
-
571
- if (sourceMapCount > 0 && globalThis.__avalonConfig?.verbose) {
572
- console.log(`📍 Generated ${sourceMapCount} source map(s)`);
573
- }
574
- },
575
- };
576
- }