@rangojs/router 0.0.0-experimental.debug-cache-fix → 0.0.0-experimental.dfdb0387
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/README.md +76 -18
- package/dist/bin/rango.js +130 -47
- package/dist/vite/index.js +702 -231
- package/package.json +2 -2
- package/skills/cache-guide/SKILL.md +32 -0
- package/skills/caching/SKILL.md +8 -0
- package/skills/links/SKILL.md +3 -1
- package/skills/loader/SKILL.md +53 -43
- package/skills/middleware/SKILL.md +2 -0
- package/skills/prerender/SKILL.md +110 -68
- package/skills/route/SKILL.md +31 -0
- package/skills/router-setup/SKILL.md +87 -2
- package/skills/typesafety/SKILL.md +10 -0
- package/src/__internal.ts +1 -1
- package/src/browser/app-version.ts +14 -0
- package/src/browser/navigation-bridge.ts +16 -3
- package/src/browser/navigation-client.ts +98 -46
- package/src/browser/navigation-store.ts +43 -8
- package/src/browser/partial-update.ts +32 -5
- package/src/browser/prefetch/cache.ts +16 -6
- package/src/browser/prefetch/fetch.ts +52 -6
- package/src/browser/prefetch/queue.ts +61 -29
- package/src/browser/prefetch/resource-ready.ts +77 -0
- package/src/browser/react/Link.tsx +67 -8
- package/src/browser/react/NavigationProvider.tsx +13 -4
- package/src/browser/react/context.ts +7 -2
- package/src/browser/react/use-handle.ts +9 -58
- package/src/browser/react/use-router.ts +21 -8
- package/src/browser/rsc-router.tsx +26 -3
- package/src/browser/scroll-restoration.ts +10 -8
- package/src/browser/segment-reconciler.ts +26 -0
- package/src/browser/server-action-bridge.ts +8 -6
- package/src/browser/types.ts +27 -5
- package/src/build/generate-manifest.ts +6 -6
- package/src/build/generate-route-types.ts +3 -0
- package/src/build/route-types/include-resolution.ts +8 -1
- package/src/build/route-types/router-processing.ts +211 -72
- package/src/build/route-types/scan-filter.ts +8 -1
- package/src/cache/cache-scope.ts +12 -14
- package/src/cache/taint.ts +55 -0
- package/src/client.tsx +2 -56
- package/src/context-var.ts +72 -2
- package/src/handle.ts +40 -0
- package/src/index.rsc.ts +3 -1
- package/src/index.ts +12 -0
- package/src/prerender/store.ts +5 -4
- package/src/prerender.ts +138 -77
- package/src/reverse.ts +22 -1
- package/src/route-definition/dsl-helpers.ts +42 -19
- package/src/route-definition/helpers-types.ts +10 -6
- package/src/route-definition/index.ts +3 -0
- package/src/route-definition/redirect.ts +9 -1
- package/src/route-definition/resolve-handler-use.ts +149 -0
- package/src/route-types.ts +11 -0
- package/src/router/content-negotiation.ts +100 -1
- package/src/router/handler-context.ts +79 -23
- package/src/router/intercept-resolution.ts +9 -4
- package/src/router/loader-resolution.ts +156 -21
- package/src/router/match-api.ts +124 -189
- package/src/router/match-middleware/cache-lookup.ts +26 -7
- package/src/router/match-middleware/segment-resolution.ts +53 -0
- package/src/router/match-result.ts +82 -4
- package/src/router/middleware-types.ts +6 -8
- package/src/router/middleware.ts +2 -5
- package/src/router/navigation-snapshot.ts +182 -0
- package/src/router/prerender-match.ts +110 -10
- package/src/router/preview-match.ts +30 -102
- package/src/router/request-classification.ts +310 -0
- package/src/router/route-snapshot.ts +245 -0
- package/src/router/router-interfaces.ts +36 -4
- package/src/router/router-options.ts +37 -11
- package/src/router/segment-resolution/fresh.ts +80 -9
- package/src/router/segment-resolution/helpers.ts +29 -24
- package/src/router/segment-resolution/revalidation.ts +91 -8
- package/src/router/types.ts +1 -0
- package/src/router.ts +54 -5
- package/src/rsc/handler.ts +472 -372
- package/src/rsc/loader-fetch.ts +23 -3
- package/src/rsc/manifest-init.ts +5 -1
- package/src/rsc/progressive-enhancement.ts +14 -2
- package/src/rsc/rsc-rendering.ts +10 -1
- package/src/rsc/server-action.ts +8 -0
- package/src/rsc/ssr-setup.ts +2 -2
- package/src/rsc/types.ts +9 -1
- package/src/server/context.ts +50 -1
- package/src/server/handle-store.ts +19 -0
- package/src/server/loader-registry.ts +9 -8
- package/src/server/request-context.ts +175 -15
- package/src/ssr/index.tsx +3 -0
- package/src/static-handler.ts +18 -6
- package/src/types/cache-types.ts +4 -4
- package/src/types/handler-context.ts +37 -19
- package/src/types/loader-types.ts +36 -9
- package/src/types/route-entry.ts +1 -1
- package/src/types/segments.ts +1 -0
- package/src/urls/path-helper-types.ts +9 -2
- package/src/urls/path-helper.ts +47 -12
- package/src/urls/pattern-types.ts +12 -0
- package/src/urls/response-types.ts +16 -6
- package/src/use-loader.tsx +77 -5
- package/src/vite/discovery/bundle-postprocess.ts +30 -33
- package/src/vite/discovery/discover-routers.ts +5 -1
- package/src/vite/discovery/prerender-collection.ts +128 -74
- package/src/vite/discovery/state.ts +13 -4
- package/src/vite/index.ts +4 -0
- package/src/vite/plugin-types.ts +60 -5
- package/src/vite/plugins/expose-id-utils.ts +12 -0
- package/src/vite/plugins/expose-ids/handler-transform.ts +30 -0
- package/src/vite/plugins/expose-internal-ids.ts +257 -40
- package/src/vite/plugins/performance-tracks.ts +88 -0
- package/src/vite/plugins/refresh-cmd.ts +88 -26
- package/src/vite/rango.ts +19 -2
- package/src/vite/router-discovery.ts +178 -37
- package/src/vite/utils/prerender-utils.ts +18 -0
- package/src/vite/utils/shared-utils.ts +3 -2
|
@@ -10,6 +10,8 @@ import type { Plugin } from "vite";
|
|
|
10
10
|
import { createServer as createViteServer } from "vite";
|
|
11
11
|
import { resolve } from "node:path";
|
|
12
12
|
import { readFileSync } from "node:fs";
|
|
13
|
+
import { createRequire } from "node:module";
|
|
14
|
+
import { pathToFileURL } from "node:url";
|
|
13
15
|
import {
|
|
14
16
|
formatNestedRouterConflictError,
|
|
15
17
|
findNestedRouterConflict,
|
|
@@ -94,6 +96,105 @@ async function createTempRscServer(
|
|
|
94
96
|
});
|
|
95
97
|
}
|
|
96
98
|
|
|
99
|
+
// ============================================================================
|
|
100
|
+
// Build-Time Env Resolution
|
|
101
|
+
// ============================================================================
|
|
102
|
+
|
|
103
|
+
import type {
|
|
104
|
+
BuildEnvOption,
|
|
105
|
+
BuildEnvFactoryContext,
|
|
106
|
+
BuildEnvResult,
|
|
107
|
+
} from "./plugin-types.js";
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Resolve the buildEnv option into a concrete { env, dispose? } result.
|
|
111
|
+
* Handles all four input shapes: false, "auto", factory, plain object.
|
|
112
|
+
*/
|
|
113
|
+
async function resolveBuildEnv(
|
|
114
|
+
option: BuildEnvOption | undefined,
|
|
115
|
+
factoryCtx: BuildEnvFactoryContext,
|
|
116
|
+
): Promise<BuildEnvResult | null> {
|
|
117
|
+
if (!option) return null;
|
|
118
|
+
|
|
119
|
+
if (option === "auto") {
|
|
120
|
+
if (factoryCtx.preset !== "cloudflare") {
|
|
121
|
+
throw new Error(
|
|
122
|
+
'[rsc-router] buildEnv: "auto" is only supported with preset: "cloudflare". ' +
|
|
123
|
+
"Use a factory function or plain object for other presets.",
|
|
124
|
+
);
|
|
125
|
+
}
|
|
126
|
+
try {
|
|
127
|
+
// Resolve wrangler from the user's project root (not the router package)
|
|
128
|
+
const userRequire = createRequire(
|
|
129
|
+
resolve(factoryCtx.root, "package.json"),
|
|
130
|
+
);
|
|
131
|
+
const wranglerPath = userRequire.resolve("wrangler");
|
|
132
|
+
const { getPlatformProxy } = (await import(
|
|
133
|
+
pathToFileURL(wranglerPath).href
|
|
134
|
+
)) as {
|
|
135
|
+
getPlatformProxy: (opts?: any) => Promise<any>;
|
|
136
|
+
};
|
|
137
|
+
const proxy = await getPlatformProxy();
|
|
138
|
+
return {
|
|
139
|
+
env: proxy.env as Record<string, unknown>,
|
|
140
|
+
dispose: proxy.dispose,
|
|
141
|
+
};
|
|
142
|
+
} catch (err: any) {
|
|
143
|
+
throw new Error(
|
|
144
|
+
'[rsc-router] buildEnv: "auto" requires wrangler to be installed.\n' +
|
|
145
|
+
`Install it with: pnpm add -D wrangler\n${err.message}`,
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (typeof option === "function") {
|
|
151
|
+
return await option(factoryCtx);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// Plain object
|
|
155
|
+
return { env: option };
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Acquire build-time env bindings and store on discovery state.
|
|
160
|
+
* Returns true if env was acquired, false if buildEnv is disabled.
|
|
161
|
+
*/
|
|
162
|
+
async function acquireBuildEnv(
|
|
163
|
+
s: DiscoveryState,
|
|
164
|
+
command: "serve" | "build",
|
|
165
|
+
mode: string,
|
|
166
|
+
): Promise<boolean> {
|
|
167
|
+
const option = s.opts?.buildEnv;
|
|
168
|
+
if (!option) return false;
|
|
169
|
+
|
|
170
|
+
const result = await resolveBuildEnv(option, {
|
|
171
|
+
root: s.projectRoot,
|
|
172
|
+
mode,
|
|
173
|
+
command,
|
|
174
|
+
preset: s.opts?.preset ?? "node",
|
|
175
|
+
});
|
|
176
|
+
if (!result) return false;
|
|
177
|
+
|
|
178
|
+
s.resolvedBuildEnv = result.env;
|
|
179
|
+
s.buildEnvDispose = result.dispose ?? null;
|
|
180
|
+
return true;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Release build-time env resources and clear state.
|
|
185
|
+
*/
|
|
186
|
+
async function releaseBuildEnv(s: DiscoveryState): Promise<void> {
|
|
187
|
+
if (s.buildEnvDispose) {
|
|
188
|
+
try {
|
|
189
|
+
await s.buildEnvDispose();
|
|
190
|
+
} catch (err: any) {
|
|
191
|
+
console.warn(`[rsc-router] buildEnv dispose failed: ${err.message}`);
|
|
192
|
+
}
|
|
193
|
+
s.buildEnvDispose = null;
|
|
194
|
+
}
|
|
195
|
+
s.resolvedBuildEnv = undefined;
|
|
196
|
+
}
|
|
197
|
+
|
|
97
198
|
/**
|
|
98
199
|
* Plugin that discovers router instances at dev/build time via the RSC environment.
|
|
99
200
|
*
|
|
@@ -111,6 +212,8 @@ export function createRouterDiscoveryPlugin(
|
|
|
111
212
|
opts?: PluginOptions,
|
|
112
213
|
): Plugin {
|
|
113
214
|
const s = createDiscoveryState(entryPath, opts);
|
|
215
|
+
let viteCommand: "serve" | "build" = "build";
|
|
216
|
+
let viteMode = "production";
|
|
114
217
|
|
|
115
218
|
return {
|
|
116
219
|
name: "@rangojs/router:discovery",
|
|
@@ -121,32 +224,20 @@ export function createRouterDiscoveryPlugin(
|
|
|
121
224
|
__RANGO_DEBUG__: JSON.stringify(!!process.env.INTERNAL_RANGO_DEBUG),
|
|
122
225
|
},
|
|
123
226
|
};
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
manualChunks(id: string) {
|
|
131
|
-
if (s.resolvedPrerenderModules?.has(id)) {
|
|
132
|
-
return "__prerender-handlers";
|
|
133
|
-
}
|
|
134
|
-
if (s.resolvedStaticModules?.has(id)) {
|
|
135
|
-
return "__static-handlers";
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
},
|
|
141
|
-
},
|
|
142
|
-
};
|
|
143
|
-
}
|
|
227
|
+
// Prerender/static handler modules are bundled naturally with the
|
|
228
|
+
// rest of the RSC entry. A previous design forced them into dedicated
|
|
229
|
+
// __prerender-handlers / __static-handlers chunks via manualChunks,
|
|
230
|
+
// but Rollup hoisted all shared dependencies into those chunks,
|
|
231
|
+
// inflating them to ~1 MB with active runtime code. Handler code is
|
|
232
|
+
// evicted in closeBundle regardless of which chunk it lands in.
|
|
144
233
|
return config;
|
|
145
234
|
},
|
|
146
235
|
|
|
147
236
|
configResolved(config) {
|
|
148
237
|
s.projectRoot = config.root;
|
|
149
238
|
s.isBuildMode = config.command === "build";
|
|
239
|
+
viteCommand = config.command as "serve" | "build";
|
|
240
|
+
viteMode = config.mode;
|
|
150
241
|
// Capture user's resolve aliases for the temp server
|
|
151
242
|
s.userResolveAlias = config.resolve.alias;
|
|
152
243
|
// Node preset: pick up auto-discovered router path from the config() hook.
|
|
@@ -217,12 +308,13 @@ export function createRouterDiscoveryPlugin(
|
|
|
217
308
|
let prerenderTempServer: any = null;
|
|
218
309
|
let prerenderNodeRegistry: Map<string, any> | null = null;
|
|
219
310
|
|
|
220
|
-
// Clean up the temporary server when the dev server shuts down
|
|
311
|
+
// Clean up the temporary server and build env when the dev server shuts down
|
|
221
312
|
server.httpServer?.on("close", () => {
|
|
222
313
|
if (prerenderTempServer) {
|
|
223
314
|
prerenderTempServer.close().catch(() => {});
|
|
224
315
|
prerenderTempServer = null;
|
|
225
316
|
}
|
|
317
|
+
releaseBuildEnv(s).catch(() => {});
|
|
226
318
|
});
|
|
227
319
|
|
|
228
320
|
async function getOrCreateTempServer(): Promise<any | null> {
|
|
@@ -262,6 +354,9 @@ export function createRouterDiscoveryPlugin(
|
|
|
262
354
|
// Create a temp Node.js server to run runtime discovery and generate
|
|
263
355
|
// named route types (static parser can't resolve factory calls).
|
|
264
356
|
try {
|
|
357
|
+
// Acquire build-time env bindings for dev prerender
|
|
358
|
+
await acquireBuildEnv(s, viteCommand, viteMode);
|
|
359
|
+
|
|
265
360
|
const tempRscEnv = await getOrCreateTempServer();
|
|
266
361
|
if (tempRscEnv) {
|
|
267
362
|
await discoverRouters(s, tempRscEnv);
|
|
@@ -278,6 +373,9 @@ export function createRouterDiscoveryPlugin(
|
|
|
278
373
|
}
|
|
279
374
|
|
|
280
375
|
try {
|
|
376
|
+
// Acquire build-time env bindings for dev prerender (Node.js path)
|
|
377
|
+
await acquireBuildEnv(s, viteCommand, viteMode);
|
|
378
|
+
|
|
281
379
|
// Set the readiness gate BEFORE discovery so early requests
|
|
282
380
|
// block until manifest is populated
|
|
283
381
|
const serverMod = await rscEnv.runner.import(
|
|
@@ -382,9 +480,31 @@ export function createRouterDiscoveryPlugin(
|
|
|
382
480
|
return;
|
|
383
481
|
}
|
|
384
482
|
|
|
385
|
-
//
|
|
386
|
-
//
|
|
387
|
-
|
|
483
|
+
// Import the user's entry module to force re-evaluation of any
|
|
484
|
+
// HMR-invalidated modules in the chain (entry → router → urls → handlers).
|
|
485
|
+
// This ensures createRouter() re-runs with updated handler code before
|
|
486
|
+
// we read RouterRegistry. Without this, edits to prerender handler files
|
|
487
|
+
// produce stale content because the old router instance remains registered.
|
|
488
|
+
const rscEnv = (server.environments as any)?.rsc;
|
|
489
|
+
let registry: Map<string, any> | null = null;
|
|
490
|
+
if (rscEnv?.runner && s.resolvedEntryPath) {
|
|
491
|
+
try {
|
|
492
|
+
await rscEnv.runner.import(s.resolvedEntryPath);
|
|
493
|
+
const serverMod = await rscEnv.runner.import(
|
|
494
|
+
"@rangojs/router/server",
|
|
495
|
+
);
|
|
496
|
+
registry = serverMod.RouterRegistry ?? null;
|
|
497
|
+
} catch (err: any) {
|
|
498
|
+
console.warn(
|
|
499
|
+
`[rsc-router] Dev prerender module refresh failed: ${err.message}`,
|
|
500
|
+
);
|
|
501
|
+
res.statusCode = 500;
|
|
502
|
+
res.end(`Prerender handler error: ${err.message}`);
|
|
503
|
+
return;
|
|
504
|
+
}
|
|
505
|
+
} else {
|
|
506
|
+
registry = mainRegistry;
|
|
507
|
+
}
|
|
388
508
|
|
|
389
509
|
if (!registry) {
|
|
390
510
|
// No main registry: the RSC env has no module runner (Cloudflare dev).
|
|
@@ -413,6 +533,8 @@ export function createRouterDiscoveryPlugin(
|
|
|
413
533
|
{},
|
|
414
534
|
undefined,
|
|
415
535
|
wantPassthrough,
|
|
536
|
+
s.resolvedBuildEnv,
|
|
537
|
+
true, // devMode: check getParams for passthrough routes
|
|
416
538
|
);
|
|
417
539
|
if (!result) continue;
|
|
418
540
|
if (result.passthrough) continue;
|
|
@@ -601,6 +723,9 @@ export function createRouterDiscoveryPlugin(
|
|
|
601
723
|
s.prerenderManifestEntries = null;
|
|
602
724
|
s.staticManifestEntries = null;
|
|
603
725
|
|
|
726
|
+
// Acquire build-time env bindings if configured
|
|
727
|
+
await acquireBuildEnv(s, viteCommand, viteMode);
|
|
728
|
+
|
|
604
729
|
let tempServer: any = null;
|
|
605
730
|
// Signal to user-space code (e.g. reverse.ts) that build-time discovery
|
|
606
731
|
// is active. Uses globalThis because the temp server's module runner
|
|
@@ -659,6 +784,7 @@ export function createRouterDiscoveryPlugin(
|
|
|
659
784
|
if (tempServer) {
|
|
660
785
|
await tempServer.close();
|
|
661
786
|
}
|
|
787
|
+
await releaseBuildEnv(s);
|
|
662
788
|
}
|
|
663
789
|
},
|
|
664
790
|
|
|
@@ -719,33 +845,40 @@ export function createRouterDiscoveryPlugin(
|
|
|
719
845
|
if (!s.resolvedPrerenderModules?.size && !s.resolvedStaticModules?.size)
|
|
720
846
|
return;
|
|
721
847
|
|
|
848
|
+
// Clear maps at the start of each RSC generateBundle pass.
|
|
849
|
+
// Vite 6 multi-environment builds run RSC twice (analysis + production);
|
|
850
|
+
// clearing prevents stale/duplicate records from the analysis pass.
|
|
851
|
+
s.handlerChunkInfoMap.clear();
|
|
852
|
+
s.staticHandlerChunkInfoMap.clear();
|
|
853
|
+
|
|
722
854
|
for (const [fileName, chunk] of Object.entries(bundle) as [
|
|
723
855
|
string,
|
|
724
856
|
any,
|
|
725
857
|
][]) {
|
|
726
858
|
if (chunk.type !== "chunk") continue;
|
|
727
859
|
|
|
728
|
-
//
|
|
729
|
-
if (
|
|
730
|
-
fileName.includes("__prerender-handlers") &&
|
|
731
|
-
s.resolvedPrerenderModules?.size
|
|
732
|
-
) {
|
|
860
|
+
// Scan all chunks for handler exports (handlers may land in any chunk)
|
|
861
|
+
if (s.resolvedPrerenderModules?.size) {
|
|
733
862
|
const handlers = extractHandlerExportsFromChunk(
|
|
734
863
|
chunk.code,
|
|
735
864
|
s.resolvedPrerenderModules,
|
|
736
865
|
"Prerender",
|
|
737
|
-
|
|
866
|
+
false,
|
|
738
867
|
);
|
|
739
868
|
if (handlers.length > 0) {
|
|
740
|
-
|
|
869
|
+
const existing = s.handlerChunkInfoMap.get(fileName);
|
|
870
|
+
if (existing) {
|
|
871
|
+
existing.exports.push(...handlers);
|
|
872
|
+
} else {
|
|
873
|
+
s.handlerChunkInfoMap.set(fileName, {
|
|
874
|
+
fileName,
|
|
875
|
+
exports: handlers,
|
|
876
|
+
});
|
|
877
|
+
}
|
|
741
878
|
}
|
|
742
879
|
}
|
|
743
880
|
|
|
744
|
-
|
|
745
|
-
if (
|
|
746
|
-
fileName.includes("__static-handlers") &&
|
|
747
|
-
s.resolvedStaticModules?.size
|
|
748
|
-
) {
|
|
881
|
+
if (s.resolvedStaticModules?.size) {
|
|
749
882
|
const handlers = extractHandlerExportsFromChunk(
|
|
750
883
|
chunk.code,
|
|
751
884
|
s.resolvedStaticModules,
|
|
@@ -753,7 +886,15 @@ export function createRouterDiscoveryPlugin(
|
|
|
753
886
|
false,
|
|
754
887
|
);
|
|
755
888
|
if (handlers.length > 0) {
|
|
756
|
-
|
|
889
|
+
const existing = s.staticHandlerChunkInfoMap.get(fileName);
|
|
890
|
+
if (existing) {
|
|
891
|
+
existing.exports.push(...handlers);
|
|
892
|
+
} else {
|
|
893
|
+
s.staticHandlerChunkInfoMap.set(fileName, {
|
|
894
|
+
fileName,
|
|
895
|
+
exports: handlers,
|
|
896
|
+
});
|
|
897
|
+
}
|
|
757
898
|
}
|
|
758
899
|
}
|
|
759
900
|
}
|
|
@@ -31,6 +31,7 @@ export function encodePathParam(value: unknown): string {
|
|
|
31
31
|
/**
|
|
32
32
|
* Substitute route params into a pattern, stripping constraint and optional
|
|
33
33
|
* syntax (:param(a|b)? -> value). Also handles wildcard params (*key).
|
|
34
|
+
* Optional params not present in `params` are removed from the output.
|
|
34
35
|
*/
|
|
35
36
|
export function substituteRouteParams(
|
|
36
37
|
pattern: string,
|
|
@@ -38,6 +39,9 @@ export function substituteRouteParams(
|
|
|
38
39
|
encode: (value: string) => string = encodeURIComponent,
|
|
39
40
|
): string {
|
|
40
41
|
let result = pattern;
|
|
42
|
+
let hadOmittedOptional = false;
|
|
43
|
+
|
|
44
|
+
// First pass: substitute provided params
|
|
41
45
|
for (const [key, value] of Object.entries(params)) {
|
|
42
46
|
const escaped = escapeRegExp(key);
|
|
43
47
|
result = result.replace(
|
|
@@ -46,6 +50,20 @@ export function substituteRouteParams(
|
|
|
46
50
|
);
|
|
47
51
|
result = result.replace(`*${key}`, encode(value));
|
|
48
52
|
}
|
|
53
|
+
|
|
54
|
+
// Second pass: strip remaining optional param placeholders not in params
|
|
55
|
+
result = result.replace(/:([a-zA-Z_][a-zA-Z0-9_]*)(\([^)]*\))?\?/g, () => {
|
|
56
|
+
hadOmittedOptional = true;
|
|
57
|
+
return "";
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
// Clean up slashes from omitted optional segments
|
|
61
|
+
if (hadOmittedOptional) {
|
|
62
|
+
const hadTrailingSlash = pattern.length > 1 && pattern.endsWith("/");
|
|
63
|
+
result = result.replace(/\/\/+/g, "/").replace(/\/+$/, "") || "/";
|
|
64
|
+
if (hadTrailingSlash && !result.endsWith("/")) result += "/";
|
|
65
|
+
}
|
|
66
|
+
|
|
49
67
|
return result;
|
|
50
68
|
}
|
|
51
69
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Plugin } from "vite";
|
|
2
2
|
import * as Vite from "vite";
|
|
3
3
|
import { getPublishedPackageName } from "./package-resolution.js";
|
|
4
|
+
import { performanceTracksOptimizeDepsPlugin } from "../plugins/performance-tracks.js";
|
|
4
5
|
import {
|
|
5
6
|
VIRTUAL_ENTRY_BROWSER,
|
|
6
7
|
VIRTUAL_ENTRY_SSR,
|
|
@@ -35,9 +36,9 @@ const versionEsbuildPlugin = {
|
|
|
35
36
|
* Includes the version stub plugin for all environments.
|
|
36
37
|
*/
|
|
37
38
|
export const sharedEsbuildOptions: {
|
|
38
|
-
plugins:
|
|
39
|
+
plugins: any[];
|
|
39
40
|
} = {
|
|
40
|
-
plugins: [versionEsbuildPlugin],
|
|
41
|
+
plugins: [versionEsbuildPlugin, performanceTracksOptimizeDepsPlugin()],
|
|
41
42
|
};
|
|
42
43
|
|
|
43
44
|
/**
|