@absolutejs/absolute 0.19.0-beta.35 → 0.19.0-beta.36

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/dist/index.js CHANGED
@@ -133,56 +133,6 @@ body{min-height:100vh;background:linear-gradient(135deg,rgba(15,23,42,0.98) 0%,r
133
133
  </html>`;
134
134
  };
135
135
 
136
- // src/dev/ssrRenderer.ts
137
- var exports_ssrRenderer = {};
138
- __export(exports_ssrRenderer, {
139
- renderInWorker: () => renderInWorker
140
- });
141
- import { resolve } from "path";
142
- var worker = null, requestId = 0, pending, getWorker = () => {
143
- if (worker)
144
- return worker;
145
- const workerPath = resolve(import.meta.dir, "ssrWorker.ts");
146
- worker = new Worker(workerPath);
147
- worker.onmessage = (event) => {
148
- const { id, ok, html, error } = event.data;
149
- const req = pending.get(id);
150
- if (!req)
151
- return;
152
- pending.delete(id);
153
- if (ok) {
154
- req.resolve(html);
155
- } else {
156
- req.reject(new Error(error ?? "SSR render failed"));
157
- }
158
- };
159
- worker.onerror = (event) => {
160
- console.error("[SSR Worker] Error:", event);
161
- for (const [id, req] of pending) {
162
- req.reject(new Error("SSR worker crashed"));
163
- pending.delete(id);
164
- }
165
- worker = null;
166
- };
167
- return worker;
168
- }, renderInWorker = (request) => new Promise((resolvePromise, rejectPromise) => {
169
- const id = ++requestId;
170
- pending.set(id, {
171
- reject: rejectPromise,
172
- resolve: resolvePromise
173
- });
174
- const w = getWorker();
175
- w.postMessage({
176
- componentPath: resolve(request.componentPath),
177
- id,
178
- indexPath: request.indexPath,
179
- props: request.props
180
- });
181
- });
182
- var init_ssrRenderer = __esm(() => {
183
- pending = new Map;
184
- });
185
-
186
136
  // src/utils/normalizePath.ts
187
137
  var normalizePath = (path) => path.replace(/\\/g, "/");
188
138
 
@@ -252,14 +202,14 @@ __export(exports_generateReactIndexes, {
252
202
  });
253
203
  import { existsSync, mkdirSync } from "fs";
254
204
  import { readdir, rm, writeFile } from "fs/promises";
255
- import { basename, join, resolve as resolve3 } from "path";
205
+ import { basename, join, resolve as resolve2 } from "path";
256
206
  var {Glob } = globalThis.Bun;
257
207
  var indexContentCache, resolveDevClientDir = () => {
258
- const fromSource = resolve3(import.meta.dir, "../dev/client");
208
+ const fromSource = resolve2(import.meta.dir, "../dev/client");
259
209
  if (existsSync(fromSource))
260
210
  return fromSource;
261
- return resolve3(import.meta.dir, "./dev/client");
262
- }, devClientDir, errorOverlayPath, hmrClientPath, refreshSetupPath, generateReactIndexFiles = async (reactPagesDirectory, reactIndexesDirectory, isDev2 = false) => {
211
+ return resolve2(import.meta.dir, "./dev/client");
212
+ }, devClientDir, errorOverlayPath, hmrClientPath, refreshSetupPath, generateReactIndexFiles = async (reactPagesDirectory, reactIndexesDirectory, isDev = false) => {
263
213
  if (!existsSync(reactIndexesDirectory)) {
264
214
  mkdirSync(reactIndexesDirectory, { recursive: true });
265
215
  }
@@ -286,7 +236,7 @@ var indexContentCache, resolveDevClientDir = () => {
286
236
  const promises = files.map(async (file2) => {
287
237
  const fileName = basename(file2);
288
238
  const [componentName] = fileName.split(".");
289
- const hmrPreamble = isDev2 ? [
239
+ const hmrPreamble = isDev ? [
290
240
  `window.__HMR_FRAMEWORK__ = "react";`,
291
241
  `window.__REACT_COMPONENT_KEY__ = "${componentName}Index";`,
292
242
  `import '${refreshSetupPath}';`,
@@ -294,14 +244,14 @@ var indexContentCache, resolveDevClientDir = () => {
294
244
  `import { showErrorOverlay, hideErrorOverlay } from '${errorOverlayPath}';
295
245
  `
296
246
  ] : [];
297
- const reactImports = isDev2 ? [
247
+ const reactImports = isDev ? [
298
248
  `import { hydrateRoot, createRoot } from 'react-dom/client';`,
299
249
  `import { createElement, Component } from 'react';`
300
250
  ] : [
301
251
  `import { hydrateRoot, createRoot } from 'react-dom/client';`,
302
252
  `import { createElement } from 'react';`
303
253
  ];
304
- const errorBoundaryDef = isDev2 ? [
254
+ const errorBoundaryDef = isDev ? [
305
255
  `
306
256
  // Dev-only Error Boundary to catch React render errors`,
307
257
  `class ErrorBoundary extends Component {`,
@@ -354,7 +304,7 @@ var indexContentCache, resolveDevClientDir = () => {
354
304
  `,
355
305
  ...errorBoundaryDef,
356
306
  `// Hydration with error handling and fallback`,
357
- `const isDev = ${isDev2};`,
307
+ `const isDev = ${isDev};`,
358
308
  `const componentPath = '../pages/${componentName}';
359
309
  `,
360
310
  `function isHydrationError(error) {`,
@@ -427,7 +377,7 @@ var indexContentCache, resolveDevClientDir = () => {
427
377
  `,
428
378
  ` // Render into the same root container when falling back to client-only`,
429
379
  ` const root = createRoot(container);`,
430
- ` root.render(${isDev2 ? `createElement(ErrorBoundary, null, createElement(${componentName}, mergedProps))` : `createElement(${componentName}, mergedProps)`});`,
380
+ ` root.render(${isDev ? `createElement(ErrorBoundary, null, createElement(${componentName}, mergedProps))` : `createElement(${componentName}, mergedProps)`});`,
431
381
  ` window.__REACT_ROOT__ = root;`,
432
382
  ` window.__HMR_CLIENT_ONLY_MODE__ = true;`,
433
383
  ` } catch (fallbackError) {`,
@@ -473,7 +423,7 @@ var indexContentCache, resolveDevClientDir = () => {
473
423
  ` // Use onRecoverableError to catch hydration errors (React 19)`,
474
424
  ` root = hydrateRoot(`,
475
425
  ` container,`,
476
- ` ${isDev2 ? `createElement(ErrorBoundary, null, createElement(${componentName}, mergedProps))` : `createElement(${componentName}, mergedProps)`},`,
426
+ ` ${isDev ? `createElement(ErrorBoundary, null, createElement(${componentName}, mergedProps))` : `createElement(${componentName}, mergedProps)`},`,
477
427
  ` {`,
478
428
  ` onRecoverableError: (error) => {`,
479
429
  ` // Check if this is a hydration error (isHydrationError filters out whitespace-only head mismatches)`,
@@ -555,7 +505,7 @@ var indexContentCache, resolveDevClientDir = () => {
555
505
  await writeFile(indexPath, content);
556
506
  });
557
507
  await Promise.all(promises);
558
- if (!isDev2) {
508
+ if (!isDev) {
559
509
  return;
560
510
  }
561
511
  const refreshPath = join(reactIndexesDirectory, "_refresh.tsx");
@@ -796,13 +746,13 @@ var init_updateAssetPaths = __esm(() => {
796
746
 
797
747
  // src/dev/buildHMRClient.ts
798
748
  import { existsSync as existsSync6 } from "fs";
799
- import { resolve as resolve4 } from "path";
749
+ import { resolve as resolve3 } from "path";
800
750
  var {build: bunBuild } = globalThis.Bun;
801
751
  var resolveHmrClientPath = () => {
802
- const fromSource = resolve4(import.meta.dir, "client/hmrClient.ts");
752
+ const fromSource = resolve3(import.meta.dir, "client/hmrClient.ts");
803
753
  if (existsSync6(fromSource))
804
754
  return fromSource;
805
- return resolve4(import.meta.dir, "dev/client/hmrClient.ts");
755
+ return resolve3(import.meta.dir, "dev/client/hmrClient.ts");
806
756
  }, hmrClientPath2, buildHMRClient = async () => {
807
757
  const entryPoint = hmrClientPath2;
808
758
  const result = await bunBuild({
@@ -921,11 +871,11 @@ var devVendorPaths = null, getDevVendorPaths = () => devVendorPaths, setDevVendo
921
871
 
922
872
  // src/build/angularLinkerPlugin.ts
923
873
  import { existsSync as existsSync7, mkdirSync as mkdirSync3, readFileSync as readFileSync3, writeFileSync as writeFileSync2 } from "fs";
924
- import { dirname as dirname2, join as join4, relative, resolve as resolve5 } from "path";
874
+ import { dirname as dirname2, join as join4, relative, resolve as resolve4 } from "path";
925
875
  import { createHash } from "crypto";
926
876
  var CACHE_DIR, angularLinkerPlugin;
927
877
  var init_angularLinkerPlugin = __esm(() => {
928
- CACHE_DIR = resolve5(".absolutejs", "cache", "angular-linker");
878
+ CACHE_DIR = resolve4(".absolutejs", "cache", "angular-linker");
929
879
  angularLinkerPlugin = {
930
880
  name: "angular-linker",
931
881
  setup(bld) {
@@ -965,7 +915,7 @@ var init_angularLinkerPlugin = __esm(() => {
965
915
  exists: existsSync7,
966
916
  readFile: readFileSync3,
967
917
  relative,
968
- resolve: resolve5
918
+ resolve: resolve4
969
919
  },
970
920
  linkerJitMode: false,
971
921
  logger: {
@@ -999,14 +949,14 @@ var init_angularLinkerPlugin = __esm(() => {
999
949
 
1000
950
  // src/utils/cleanStaleOutputs.ts
1001
951
  import { rm as rm2 } from "fs/promises";
1002
- import { resolve as resolve6 } from "path";
952
+ import { resolve as resolve5 } from "path";
1003
953
  var {Glob: Glob4 } = globalThis.Bun;
1004
954
  var HASHED_FILE_PATTERN, cleanStaleOutputs = async (buildPath, currentOutputPaths) => {
1005
- const currentPaths = new Set(currentOutputPaths.map((path) => resolve6(path)));
955
+ const currentPaths = new Set(currentOutputPaths.map((path) => resolve5(path)));
1006
956
  const glob = new Glob4("**/*");
1007
957
  const removals = [];
1008
958
  for (const relative2 of glob.scanSync({ cwd: buildPath })) {
1009
- const absolute = resolve6(buildPath, relative2);
959
+ const absolute = resolve5(buildPath, relative2);
1010
960
  if (currentPaths.has(absolute))
1011
961
  continue;
1012
962
  if (!HASHED_FILE_PATTERN.test(relative2))
@@ -1227,10 +1177,10 @@ var init_logger = __esm(() => {
1227
1177
  });
1228
1178
 
1229
1179
  // src/utils/validateSafePath.ts
1230
- import { resolve as resolve7, relative as relative2 } from "path";
1180
+ import { resolve as resolve6, relative as relative2 } from "path";
1231
1181
  var validateSafePath = (targetPath, baseDirectory) => {
1232
- const absoluteBase = resolve7(baseDirectory);
1233
- const absoluteTarget = resolve7(baseDirectory, targetPath);
1182
+ const absoluteBase = resolve6(baseDirectory);
1183
+ const absoluteTarget = resolve6(baseDirectory, targetPath);
1234
1184
  const relativePath = normalizePath(relative2(absoluteBase, absoluteTarget));
1235
1185
  if (relativePath.startsWith("../") || relativePath === "..") {
1236
1186
  throw new Error(`Unsafe path: ${targetPath}`);
@@ -1252,17 +1202,17 @@ import {
1252
1202
  join as join6,
1253
1203
  basename as basename2,
1254
1204
  extname as extname2,
1255
- resolve as resolve8,
1205
+ resolve as resolve7,
1256
1206
  relative as relative3,
1257
1207
  sep
1258
1208
  } from "path";
1259
1209
  import { env } from "process";
1260
1210
  var {write, file: file2, Transpiler } = globalThis.Bun;
1261
1211
  var resolveDevClientDir2 = () => {
1262
- const fromSource = resolve8(import.meta.dir, "../dev/client");
1212
+ const fromSource = resolve7(import.meta.dir, "../dev/client");
1263
1213
  if (existsSync8(fromSource))
1264
1214
  return fromSource;
1265
- return resolve8(import.meta.dir, "./dev/client");
1215
+ return resolve7(import.meta.dir, "./dev/client");
1266
1216
  }, devClientDir2, hmrClientPath3, persistentCache, sourceHashCache, clearSvelteCompilerCache = () => {
1267
1217
  persistentCache.clear();
1268
1218
  sourceHashCache.clear();
@@ -1274,7 +1224,7 @@ var resolveDevClientDir2 = () => {
1274
1224
  return false;
1275
1225
  }
1276
1226
  }, resolveSvelte = async (spec, from) => {
1277
- const basePath = resolve8(dirname3(from), spec);
1227
+ const basePath = resolve7(dirname3(from), spec);
1278
1228
  const explicit = /\.(svelte|svelte\.(?:ts|js))$/.test(basePath);
1279
1229
  if (!explicit) {
1280
1230
  const extensions = [".svelte", ".svelte.ts", ".svelte.js"];
@@ -1294,7 +1244,7 @@ var resolveDevClientDir2 = () => {
1294
1244
  if (await exists(jsPath))
1295
1245
  return jsPath;
1296
1246
  return null;
1297
- }, compileSvelte = async (entryPoints, svelteRoot, cache = new Map, isDev2 = false) => {
1247
+ }, compileSvelte = async (entryPoints, svelteRoot, cache = new Map, isDev = false) => {
1298
1248
  const { compile, compileModule, preprocess } = await import("svelte/compiler");
1299
1249
  const clientDir = join6(svelteRoot, "client");
1300
1250
  const indexDir = join6(svelteRoot, "indexes");
@@ -1364,7 +1314,7 @@ var resolveDevClientDir2 = () => {
1364
1314
  const indexPath = join6(indexDir, relClientDir, `${name}.js`);
1365
1315
  const importRaw = relative3(dirname3(indexPath), client2).split(sep).join("/");
1366
1316
  const importPath = importRaw.startsWith(".") || importRaw.startsWith("/") ? importRaw : `./${importRaw}`;
1367
- const hmrImports = isDev2 ? `window.__HMR_FRAMEWORK__ = "svelte";
1317
+ const hmrImports = isDev ? `window.__HMR_FRAMEWORK__ = "svelte";
1368
1318
  import "${hmrClientPath3}";
1369
1319
  ` : "";
1370
1320
  const bootstrap = `${hmrImports}import Component from "${importPath}";
@@ -1427,13 +1377,13 @@ __export(exports_compileVue, {
1427
1377
  });
1428
1378
  import { existsSync as existsSync9 } from "fs";
1429
1379
  import { mkdir as mkdir2 } from "fs/promises";
1430
- import { basename as basename3, dirname as dirname4, join as join7, relative as relative4, resolve as resolve9 } from "path";
1380
+ import { basename as basename3, dirname as dirname4, join as join7, relative as relative4, resolve as resolve8 } from "path";
1431
1381
  var {file: file3, write: write2, Transpiler: Transpiler2 } = globalThis.Bun;
1432
1382
  var resolveDevClientDir3 = () => {
1433
- const fromSource = resolve9(import.meta.dir, "../dev/client");
1383
+ const fromSource = resolve8(import.meta.dir, "../dev/client");
1434
1384
  if (existsSync9(fromSource))
1435
1385
  return fromSource;
1436
- return resolve9(import.meta.dir, "./dev/client");
1386
+ return resolve8(import.meta.dir, "./dev/client");
1437
1387
  }, devClientDir3, hmrClientPath4, transpiler2, scriptCache, scriptSetupCache, templateCache, styleCache, persistentBuildCache, vueSourceHashCache, vueHmrMetadata, clearVueHmrCaches = () => {
1438
1388
  scriptCache.clear();
1439
1389
  scriptSetupCache.clear();
@@ -1522,7 +1472,7 @@ var resolveDevClientDir3 = () => {
1522
1472
  const importPaths = extractImports(scriptSource);
1523
1473
  const childComponentPaths = importPaths.filter((path) => path.startsWith(".") && path.endsWith(".vue"));
1524
1474
  const helperModulePaths = importPaths.filter((path) => path.startsWith(".") && !path.endsWith(".vue"));
1525
- const childBuildResults = await Promise.all(childComponentPaths.map((relativeChildPath) => compileVueFile(resolve9(dirname4(sourceFilePath), relativeChildPath), outputDirs, cacheMap, false, vueRootDir, compiler)));
1475
+ const childBuildResults = await Promise.all(childComponentPaths.map((relativeChildPath) => compileVueFile(resolve8(dirname4(sourceFilePath), relativeChildPath), outputDirs, cacheMap, false, vueRootDir, compiler)));
1526
1476
  const compiledScript = compiler.compileScript(descriptor, {
1527
1477
  id: componentId,
1528
1478
  inlineTemplate: false
@@ -1598,14 +1548,14 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1598
1548
  hmrId,
1599
1549
  serverPath: serverOutputPath,
1600
1550
  tsHelperPaths: [
1601
- ...helperModulePaths.map((helper) => resolve9(dirname4(sourceFilePath), helper.endsWith(".ts") ? helper : `${helper}.ts`)),
1551
+ ...helperModulePaths.map((helper) => resolve8(dirname4(sourceFilePath), helper.endsWith(".ts") ? helper : `${helper}.ts`)),
1602
1552
  ...childBuildResults.flatMap((child) => child.tsHelperPaths)
1603
1553
  ]
1604
1554
  };
1605
1555
  cacheMap.set(sourceFilePath, result);
1606
1556
  persistentBuildCache.set(sourceFilePath, result);
1607
1557
  return result;
1608
- }, compileVue = async (entryPoints, vueRootDir, isDev2 = false) => {
1558
+ }, compileVue = async (entryPoints, vueRootDir, isDev = false) => {
1609
1559
  const compiler = await import("@vue/compiler-sfc");
1610
1560
  const clientOutputDir = join7(vueRootDir, "client");
1611
1561
  const indexOutputDir = join7(vueRootDir, "indexes");
@@ -1620,7 +1570,7 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1620
1570
  const buildCache = new Map;
1621
1571
  const allTsHelperPaths = new Set;
1622
1572
  const compiledPages = await Promise.all(entryPoints.map(async (entryPath) => {
1623
- const result = await compileVueFile(resolve9(entryPath), {
1573
+ const result = await compileVueFile(resolve8(entryPath), {
1624
1574
  client: clientOutputDir,
1625
1575
  css: cssOutputDir,
1626
1576
  server: serverOutputDir
@@ -1630,7 +1580,7 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1630
1580
  const indexOutputFile = join7(indexOutputDir, `${entryBaseName}.js`);
1631
1581
  const clientOutputFile = join7(clientOutputDir, relative4(vueRootDir, entryPath).replace(/\\/g, "/").replace(/\.vue$/, ".js"));
1632
1582
  await mkdir2(dirname4(indexOutputFile), { recursive: true });
1633
- const vueHmrImports = isDev2 ? [
1583
+ const vueHmrImports = isDev ? [
1634
1584
  `window.__HMR_FRAMEWORK__ = "vue";`,
1635
1585
  `import "${hmrClientPath4}";`
1636
1586
  ] : [];
@@ -24910,8 +24860,8 @@ ${lanes.join(`
24910
24860
  }
24911
24861
  function forEachProjectReference(projectReferences, resolvedProjectReferences, cbResolvedRef, cbRef) {
24912
24862
  let seenResolvedRefs;
24913
- return worker2(projectReferences, resolvedProjectReferences, undefined);
24914
- function worker2(projectReferences2, resolvedProjectReferences2, parent2) {
24863
+ return worker(projectReferences, resolvedProjectReferences, undefined);
24864
+ function worker(projectReferences2, resolvedProjectReferences2, parent2) {
24915
24865
  if (cbRef) {
24916
24866
  const result = cbRef(projectReferences2, parent2);
24917
24867
  if (result)
@@ -24927,7 +24877,7 @@ ${lanes.join(`
24927
24877
  if (result || !resolvedRef)
24928
24878
  return result;
24929
24879
  (seenResolvedRefs || (seenResolvedRefs = /* @__PURE__ */ new Set)).add(resolvedRef.sourceFile.path);
24930
- }) || forEach(resolvedProjectReferences2, (resolvedRef) => resolvedRef && !(skipChildren == null ? undefined : skipChildren.has(resolvedRef)) ? worker2(resolvedRef.commandLine.projectReferences, resolvedRef.references, resolvedRef) : undefined);
24880
+ }) || forEach(resolvedProjectReferences2, (resolvedRef) => resolvedRef && !(skipChildren == null ? undefined : skipChildren.has(resolvedRef)) ? worker(resolvedRef.commandLine.projectReferences, resolvedRef.references, resolvedRef) : undefined);
24931
24881
  }
24932
24882
  }
24933
24883
  function getOptionsSyntaxByArrayElementValue(optionsObject, name, value) {
@@ -100044,14 +99994,14 @@ ${lanes.join(`
100044
99994
  }
100045
99995
  }
100046
99996
  function createImportCallExpressionAMD(arg, containsLexicalThis) {
100047
- const resolve10 = factory2.createUniqueName("resolve");
99997
+ const resolve9 = factory2.createUniqueName("resolve");
100048
99998
  const reject = factory2.createUniqueName("reject");
100049
99999
  const parameters = [
100050
- factory2.createParameterDeclaration(undefined, undefined, resolve10),
100000
+ factory2.createParameterDeclaration(undefined, undefined, resolve9),
100051
100001
  factory2.createParameterDeclaration(undefined, undefined, reject)
100052
100002
  ];
100053
100003
  const body = factory2.createBlock([
100054
- factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve10, reject]))
100004
+ factory2.createExpressionStatement(factory2.createCallExpression(factory2.createIdentifier("require"), undefined, [factory2.createArrayLiteralExpression([arg || factory2.createOmittedExpression()]), resolve9, reject]))
100055
100005
  ]);
100056
100006
  let func;
100057
100007
  if (languageVersion >= 2) {
@@ -112756,18 +112706,18 @@ ${lanes.join(`
112756
112706
  state.programEmitPending = undefined;
112757
112707
  }
112758
112708
  (_b = state.affectedFilesPendingEmit) == null || _b.forEach((emitKind, path) => {
112759
- const pending2 = !isForDtsErrors ? emitKind & 7 : emitKind & (7 | 48);
112760
- if (!pending2)
112709
+ const pending = !isForDtsErrors ? emitKind & 7 : emitKind & (7 | 48);
112710
+ if (!pending)
112761
112711
  state.affectedFilesPendingEmit.delete(path);
112762
112712
  else
112763
- state.affectedFilesPendingEmit.set(path, pending2);
112713
+ state.affectedFilesPendingEmit.set(path, pending);
112764
112714
  });
112765
112715
  if (state.programEmitPending) {
112766
- const pending2 = !isForDtsErrors ? state.programEmitPending & 7 : state.programEmitPending & (7 | 48);
112767
- if (!pending2)
112716
+ const pending = !isForDtsErrors ? state.programEmitPending & 7 : state.programEmitPending & (7 | 48);
112717
+ if (!pending)
112768
112718
  state.programEmitPending = undefined;
112769
112719
  else
112770
- state.programEmitPending = pending2;
112720
+ state.programEmitPending = pending;
112771
112721
  }
112772
112722
  }
112773
112723
  function getPendingEmitKindWithSeen(optionsOrEmitKind, seenOldOptionsOrEmitKind, emitOnlyDtsFiles, isForDtsErrors) {
@@ -115716,8 +115666,8 @@ ${lanes.join(`
115716
115666
  if (!host.setTimeout || !host.clearTimeout) {
115717
115667
  return resolutionCache.invalidateResolutionsOfFailedLookupLocations();
115718
115668
  }
115719
- const pending2 = clearInvalidateResolutionsOfFailedLookupLocations();
115720
- writeLog(`Scheduling invalidateFailedLookup${pending2 ? ", Cancelled earlier one" : ""}`);
115669
+ const pending = clearInvalidateResolutionsOfFailedLookupLocations();
115670
+ writeLog(`Scheduling invalidateFailedLookup${pending ? ", Cancelled earlier one" : ""}`);
115721
115671
  timerToInvalidateFailedLookupResolutions = host.setTimeout(invalidateResolutionsOfFailedLookup, 250, "timerToInvalidateFailedLookupResolutions");
115722
115672
  }
115723
115673
  function invalidateResolutionsOfFailedLookup() {
@@ -160529,16 +160479,16 @@ ${options.prefix}` : `
160529
160479
  return;
160530
160480
  }
160531
160481
  this.ensurePackageDirectoryExists(cachePath);
160532
- const requestId2 = this.installRunCount;
160482
+ const requestId = this.installRunCount;
160533
160483
  this.installRunCount++;
160534
160484
  this.sendResponse({
160535
160485
  kind: EventBeginInstallTypes,
160536
- eventId: requestId2,
160486
+ eventId: requestId,
160537
160487
  typingsInstallerVersion: version,
160538
160488
  projectName: req.projectName
160539
160489
  });
160540
160490
  const scopedTypings = filteredTypings.map(typingsName);
160541
- this.installTypingsAsync(requestId2, scopedTypings, cachePath, (ok) => {
160491
+ this.installTypingsAsync(requestId, scopedTypings, cachePath, (ok) => {
160542
160492
  try {
160543
160493
  if (!ok) {
160544
160494
  if (this.log.isEnabled()) {
@@ -160572,7 +160522,7 @@ ${options.prefix}` : `
160572
160522
  } finally {
160573
160523
  const response = {
160574
160524
  kind: EventEndInstallTypes,
160575
- eventId: requestId2,
160525
+ eventId: requestId,
160576
160526
  projectName: req.projectName,
160577
160527
  packagesToInstall: scopedTypings,
160578
160528
  installSuccess: ok,
@@ -160615,8 +160565,8 @@ ${options.prefix}` : `
160615
160565
  kind: ActionSet
160616
160566
  };
160617
160567
  }
160618
- installTypingsAsync(requestId2, packageNames, cwd, onRequestCompleted) {
160619
- this.pendingRunRequests.unshift({ requestId: requestId2, packageNames, cwd, onRequestCompleted });
160568
+ installTypingsAsync(requestId, packageNames, cwd, onRequestCompleted) {
160569
+ this.pendingRunRequests.unshift({ requestId, packageNames, cwd, onRequestCompleted });
160620
160570
  this.executeWithThrottling();
160621
160571
  }
160622
160572
  executeWithThrottling() {
@@ -166712,19 +166662,19 @@ ${json}${newLine}`;
166712
166662
  this.performanceData = undefined;
166713
166663
  }
166714
166664
  immediate(actionType, action) {
166715
- const requestId2 = this.requestId;
166716
- Debug.assert(requestId2 === this.operationHost.getCurrentRequestId(), "immediate: incorrect request id");
166665
+ const requestId = this.requestId;
166666
+ Debug.assert(requestId === this.operationHost.getCurrentRequestId(), "immediate: incorrect request id");
166717
166667
  this.setImmediateId(this.operationHost.getServerHost().setImmediate(() => {
166718
166668
  this.immediateId = undefined;
166719
- this.operationHost.executeWithRequestId(requestId2, () => this.executeAction(action), this.performanceData);
166669
+ this.operationHost.executeWithRequestId(requestId, () => this.executeAction(action), this.performanceData);
166720
166670
  }, actionType));
166721
166671
  }
166722
166672
  delay(actionType, ms, action) {
166723
- const requestId2 = this.requestId;
166724
- Debug.assert(requestId2 === this.operationHost.getCurrentRequestId(), "delay: incorrect request id");
166673
+ const requestId = this.requestId;
166674
+ Debug.assert(requestId === this.operationHost.getCurrentRequestId(), "delay: incorrect request id");
166725
166675
  this.setTimerHandle(this.operationHost.getServerHost().setTimeout(() => {
166726
166676
  this.timerHandle = undefined;
166727
- this.operationHost.executeWithRequestId(requestId2, () => this.executeAction(action), this.performanceData);
166677
+ this.operationHost.executeWithRequestId(requestId, () => this.executeAction(action), this.performanceData);
166728
166678
  }, ms, actionType));
166729
166679
  }
166730
166680
  executeAction(action) {
@@ -167499,12 +167449,12 @@ ${json}${newLine}`;
167499
167449
  const { throttleWaitMilliseconds } = opts;
167500
167450
  this.eventHandler = this.canUseEvents ? opts.eventHandler || ((event) => this.defaultEventHandler(event)) : undefined;
167501
167451
  const multistepOperationHost = {
167502
- executeWithRequestId: (requestId2, action, performanceData) => this.executeWithRequestId(requestId2, action, performanceData),
167452
+ executeWithRequestId: (requestId, action, performanceData) => this.executeWithRequestId(requestId, action, performanceData),
167503
167453
  getCurrentRequestId: () => this.currentRequestId,
167504
167454
  getPerformanceData: () => this.performanceData,
167505
167455
  getServerHost: () => this.host,
167506
167456
  logError: (err, cmd) => this.logError(err, cmd),
167507
- sendRequestCompletedEvent: (requestId2, performanceData) => this.sendRequestCompletedEvent(requestId2, performanceData),
167457
+ sendRequestCompletedEvent: (requestId, performanceData) => this.sendRequestCompletedEvent(requestId, performanceData),
167508
167458
  isCancellationRequested: () => this.cancellationToken.isCancellationRequested()
167509
167459
  };
167510
167460
  this.errorCheck = new MultistepOperation(multistepOperationHost);
@@ -167547,9 +167497,9 @@ ${json}${newLine}`;
167547
167497
  Debug.assertNever(this.projectService.serverMode);
167548
167498
  }
167549
167499
  }
167550
- sendRequestCompletedEvent(requestId2, performanceData) {
167500
+ sendRequestCompletedEvent(requestId, performanceData) {
167551
167501
  this.event({
167552
- request_seq: requestId2,
167502
+ request_seq: requestId,
167553
167503
  performanceData: performanceData && toProtocolPerformanceData(performanceData)
167554
167504
  }, "requestCompleted");
167555
167505
  }
@@ -169335,24 +169285,24 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
169335
169285
  }
169336
169286
  this.handlers.set(command, handler);
169337
169287
  }
169338
- setCurrentRequest(requestId2) {
169288
+ setCurrentRequest(requestId) {
169339
169289
  Debug.assert(this.currentRequestId === undefined);
169340
- this.currentRequestId = requestId2;
169341
- this.cancellationToken.setRequest(requestId2);
169290
+ this.currentRequestId = requestId;
169291
+ this.cancellationToken.setRequest(requestId);
169342
169292
  }
169343
- resetCurrentRequest(requestId2) {
169344
- Debug.assert(this.currentRequestId === requestId2);
169293
+ resetCurrentRequest(requestId) {
169294
+ Debug.assert(this.currentRequestId === requestId);
169345
169295
  this.currentRequestId = undefined;
169346
- this.cancellationToken.resetRequest(requestId2);
169296
+ this.cancellationToken.resetRequest(requestId);
169347
169297
  }
169348
- executeWithRequestId(requestId2, f, perfomanceData) {
169298
+ executeWithRequestId(requestId, f, perfomanceData) {
169349
169299
  const currentPerformanceData = this.performanceData;
169350
169300
  try {
169351
169301
  this.performanceData = perfomanceData;
169352
- this.setCurrentRequest(requestId2);
169302
+ this.setCurrentRequest(requestId);
169353
169303
  return f();
169354
169304
  } finally {
169355
- this.resetCurrentRequest(requestId2);
169305
+ this.resetCurrentRequest(requestId);
169356
169306
  this.performanceData = currentPerformanceData;
169357
169307
  }
169358
169308
  }
@@ -170226,8 +170176,8 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
170226
170176
  installPackage(options) {
170227
170177
  this.packageInstallId++;
170228
170178
  const request = { kind: "installPackage", ...options, id: this.packageInstallId };
170229
- const promise = new Promise((resolve10, reject) => {
170230
- (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve: resolve10, reject });
170179
+ const promise = new Promise((resolve9, reject) => {
170180
+ (this.packageInstalledPromise ?? (this.packageInstalledPromise = /* @__PURE__ */ new Map)).set(this.packageInstallId, { resolve: resolve9, reject });
170231
170181
  });
170232
170182
  this.installer.send(request);
170233
170183
  return promise;
@@ -170494,7 +170444,7 @@ __export(exports_compileAngular, {
170494
170444
  compileAngular: () => compileAngular
170495
170445
  });
170496
170446
  import { existsSync as existsSync10, readFileSync as readFileSync4, promises as fs } from "fs";
170497
- import { join as join8, basename as basename4, sep as sep2, dirname as dirname5, resolve as resolve10, relative as relative5 } from "path";
170447
+ import { join as join8, basename as basename4, sep as sep2, dirname as dirname5, resolve as resolve9, relative as relative5 } from "path";
170498
170448
  import { createHash as createHash2 } from "crypto";
170499
170449
  var import_typescript, computeConfigHash = () => {
170500
170450
  try {
@@ -170504,10 +170454,10 @@ var import_typescript, computeConfigHash = () => {
170504
170454
  return "";
170505
170455
  }
170506
170456
  }, resolveDevClientDir4 = () => {
170507
- const fromSource = resolve10(import.meta.dir, "../dev/client");
170457
+ const fromSource = resolve9(import.meta.dir, "../dev/client");
170508
170458
  if (existsSync10(fromSource))
170509
170459
  return fromSource;
170510
- return resolve10(import.meta.dir, "./dev/client");
170460
+ return resolve9(import.meta.dir, "./dev/client");
170511
170461
  }, devClientDir4, hmrClientPath5, hmrRuntimePath, injectHMRRegistration = (content, sourceId) => {
170512
170462
  const componentClassRegex = /(?:export\s+)?class\s+(\w+Component)\s/g;
170513
170463
  const componentNames = [];
@@ -170569,7 +170519,7 @@ ${registrations}
170569
170519
  } else {
170570
170520
  const tsPath = __require.resolve("/home/alexkahn/abs/absolutejs/node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/typescript.js");
170571
170521
  const tsRootDir = dirname5(tsPath);
170572
- tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve10(tsRootDir, "lib");
170522
+ tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve9(tsRootDir, "lib");
170573
170523
  const config = readConfiguration("./tsconfig.json");
170574
170524
  options = {
170575
170525
  emitDecoratorMetadata: true,
@@ -170615,7 +170565,7 @@ ${registrations}
170615
170565
  };
170616
170566
  }
170617
170567
  const emitted = {};
170618
- const resolvedOutDir = resolve10(outDir);
170568
+ const resolvedOutDir = resolve9(outDir);
170619
170569
  host.writeFile = (fileName, text) => {
170620
170570
  const relativePath = resolveRelativePath(fileName, resolvedOutDir, outDir);
170621
170571
  emitted[relativePath] = text;
@@ -170702,9 +170652,9 @@ ${registrations}
170702
170652
  sourceMap: false,
170703
170653
  target: import_typescript.default.ScriptTarget.ES2022
170704
170654
  };
170705
- const baseDir = resolve10(rootDir ?? process.cwd());
170655
+ const baseDir = resolve9(rootDir ?? process.cwd());
170706
170656
  const transpileFile = async (filePath) => {
170707
- const resolved = resolve10(filePath);
170657
+ const resolved = resolve9(filePath);
170708
170658
  if (visited.has(resolved))
170709
170659
  return;
170710
170660
  visited.add(resolved);
@@ -170753,7 +170703,7 @@ ${registrations}
170753
170703
  }
170754
170704
  const inputDirForResolve = dirname5(actualPath);
170755
170705
  await Promise.all(localImports.map((imp) => {
170756
- const importPath = resolve10(inputDirForResolve, imp);
170706
+ const importPath = resolve9(inputDirForResolve, imp);
170757
170707
  return transpileFile(importPath);
170758
170708
  }));
170759
170709
  };
@@ -171056,10 +171006,10 @@ import {
171056
171006
  rmSync,
171057
171007
  writeFileSync as writeFileSync3
171058
171008
  } from "fs";
171059
- import { basename as basename5, join as join11, relative as relative6, resolve as resolve11 } from "path";
171009
+ import { basename as basename5, join as join11, relative as relative6, resolve as resolve10 } from "path";
171060
171010
  import { cwd, env as env2, exit } from "process";
171061
171011
  var {build: bunBuild4, Glob: Glob5 } = globalThis.Bun;
171062
- var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncremental, throwOnError) => {
171012
+ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental, throwOnError) => {
171063
171013
  const errLog = logs.find((log2) => log2.level === "error") ?? logs[0];
171064
171014
  if (!errLog) {
171065
171015
  exit(1);
@@ -171094,8 +171044,8 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171094
171044
  }
171095
171045
  }, resolveAbsoluteVersion = async () => {
171096
171046
  const candidates = [
171097
- resolve11(import.meta.dir, "..", "..", "package.json"),
171098
- resolve11(import.meta.dir, "..", "package.json")
171047
+ resolve10(import.meta.dir, "..", "..", "package.json"),
171048
+ resolve10(import.meta.dir, "..", "package.json")
171099
171049
  ];
171100
171050
  for (const candidate of candidates) {
171101
171051
  const pkg = await tryReadPackageJson(candidate);
@@ -171168,7 +171118,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171168
171118
  sendTelemetryEvent("build:start", {
171169
171119
  framework: frameworkNames[0],
171170
171120
  frameworks: frameworkNames,
171171
- mode: mode ?? (isDev2 ? "development" : "production"),
171121
+ mode: mode ?? (isDev ? "development" : "production"),
171172
171122
  tailwind: Boolean(tailwind)
171173
171123
  });
171174
171124
  const clientRoots = [
@@ -171205,13 +171155,13 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171205
171155
  const filterToIncrementalEntries = (entryPoints, mapToSource) => {
171206
171156
  if (!isIncremental || !incrementalFiles)
171207
171157
  return entryPoints;
171208
- const normalizedIncremental = new Set(incrementalFiles.map((f) => resolve11(f)));
171158
+ const normalizedIncremental = new Set(incrementalFiles.map((f) => resolve10(f)));
171209
171159
  const matchingEntries = [];
171210
171160
  for (const entry of entryPoints) {
171211
171161
  const sourceFile = mapToSource(entry);
171212
171162
  if (!sourceFile)
171213
171163
  continue;
171214
- if (!normalizedIncremental.has(resolve11(sourceFile)))
171164
+ if (!normalizedIncremental.has(resolve10(sourceFile)))
171215
171165
  continue;
171216
171166
  matchingEntries.push(entry);
171217
171167
  }
@@ -171264,7 +171214,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171264
171214
  ]);
171265
171215
  const shouldIncludeHtmlAssets = !isIncremental || normalizedIncrementalFiles?.some((f) => f.includes("/html/") && (f.endsWith(".html") || f.endsWith(".css")));
171266
171216
  const reactEntries = isIncremental && reactIndexesPath && reactPagesPath ? filterToIncrementalEntries(allReactEntries, (entry) => {
171267
- if (entry.startsWith(resolve11(reactIndexesPath))) {
171217
+ if (entry.startsWith(resolve10(reactIndexesPath))) {
171268
171218
  const pageName = basename5(entry, ".tsx");
171269
171219
  return join11(reactPagesPath, `${pageName}.tsx`);
171270
171220
  }
@@ -171335,7 +171285,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171335
171285
  },
171336
171286
  frameworks: frameworkNames,
171337
171287
  incremental: Boolean(isIncremental),
171338
- mode: mode ?? (isDev2 ? "development" : "production"),
171288
+ mode: mode ?? (isDev ? "development" : "production"),
171339
171289
  scannedEntries: {
171340
171290
  angular: allAngularEntries.length,
171341
171291
  html: allHtmlEntries.length,
@@ -171368,7 +171318,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171368
171318
  entrypoints: reactClientEntryPoints,
171369
171319
  ...vendorPaths ? { external: Object.keys(vendorPaths) } : {},
171370
171320
  format: "esm",
171371
- minify: !isDev2,
171321
+ minify: !isDev,
171372
171322
  naming: `[dir]/[name].[hash].[ext]`,
171373
171323
  outdir: buildPath,
171374
171324
  ...hmr ? { jsx: { development: true }, reactFastRefresh: true } : {},
@@ -171427,15 +171377,15 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171427
171377
  entrypoints: nonReactClientEntryPoints,
171428
171378
  ...angularVendorPaths2 ? { external: Object.keys(angularVendorPaths2) } : {},
171429
171379
  format: "esm",
171430
- minify: !isDev2,
171380
+ minify: !isDev,
171431
171381
  naming: `[dir]/[name].[hash].[ext]`,
171432
171382
  outdir: buildPath,
171433
171383
  plugins: [
171434
- ...angularDir && !isDev2 ? [angularLinkerPlugin] : [],
171384
+ ...angularDir && !isDev ? [angularLinkerPlugin] : [],
171435
171385
  ...htmlScriptPlugin ? [htmlScriptPlugin] : []
171436
171386
  ],
171437
171387
  root: clientRoot,
171438
- splitting: !isDev2,
171388
+ splitting: !isDev,
171439
171389
  target: "browser",
171440
171390
  throw: false
171441
171391
  }) : undefined,
@@ -171598,7 +171548,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171598
171548
  const devIndexDir = join11(buildPath, "_src_indexes");
171599
171549
  mkdirSync6(devIndexDir, { recursive: true });
171600
171550
  const indexFiles = readDir(reactIndexesPath).filter((f) => f.endsWith(".tsx"));
171601
- const pagesRel = relative6(process.cwd(), resolve11(reactPagesPath)).replace(/\\/g, "/");
171551
+ const pagesRel = relative6(process.cwd(), resolve10(reactPagesPath)).replace(/\\/g, "/");
171602
171552
  for (const file4 of indexFiles) {
171603
171553
  let content = readFileSync5(join11(reactIndexesPath, file4), "utf-8");
171604
171554
  content = content.replace(/from\s*['"]\.\.\/pages\/([^'"]+)['"]/g, `from '/@src/${pagesRel}/$1'`);
@@ -171618,7 +171568,7 @@ var isDev2, extractBuildError = (logs, pass, label, frameworkNames, isIncrementa
171618
171568
  sendTelemetryEvent("build:complete", {
171619
171569
  durationMs: Math.round(performance.now() - buildStart),
171620
171570
  frameworks: frameworkNames,
171621
- mode: mode ?? (isDev2 ? "development" : "production")
171571
+ mode: mode ?? (isDev ? "development" : "production")
171622
171572
  });
171623
171573
  if (!isIncremental) {
171624
171574
  writeFileSync3(join11(buildPath, "manifest.json"), JSON.stringify(manifest, null, "\t"));
@@ -171642,17 +171592,17 @@ var init_build = __esm(() => {
171642
171592
  init_commonAncestor();
171643
171593
  init_logger();
171644
171594
  init_validateSafePath();
171645
- isDev2 = env2.NODE_ENV === "development";
171595
+ isDev = env2.NODE_ENV === "development";
171646
171596
  vueFeatureFlags = {
171647
171597
  __VUE_OPTIONS_API__: "true",
171648
- __VUE_PROD_DEVTOOLS__: isDev2 ? "true" : "false",
171649
- __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: isDev2 ? "true" : "false"
171598
+ __VUE_PROD_DEVTOOLS__: isDev ? "true" : "false",
171599
+ __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: isDev ? "true" : "false"
171650
171600
  };
171651
171601
  });
171652
171602
 
171653
171603
  // src/dev/dependencyGraph.ts
171654
171604
  import { existsSync as existsSync11, readFileSync as readFileSync6, readdirSync } from "fs";
171655
- import { resolve as resolve12 } from "path";
171605
+ import { resolve as resolve11 } from "path";
171656
171606
  var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath) => {
171657
171607
  const lower = filePath.toLowerCase();
171658
171608
  if (lower.endsWith(".ts") || lower.endsWith(".tsx") || lower.endsWith(".jsx"))
@@ -171666,8 +171616,8 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171666
171616
  if (!importPath.startsWith(".") && !importPath.startsWith("/")) {
171667
171617
  return null;
171668
171618
  }
171669
- const fromDir = resolve12(fromFile, "..");
171670
- const normalized = resolve12(fromDir, importPath);
171619
+ const fromDir = resolve11(fromFile, "..");
171620
+ const normalized = resolve11(fromDir, importPath);
171671
171621
  const extensions = [
171672
171622
  ".ts",
171673
171623
  ".tsx",
@@ -171697,7 +171647,7 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171697
171647
  dependents.delete(normalizedPath);
171698
171648
  }
171699
171649
  }, addFileToGraph = (graph, filePath) => {
171700
- const normalizedPath = resolve12(filePath);
171650
+ const normalizedPath = resolve11(filePath);
171701
171651
  if (!existsSync11(normalizedPath))
171702
171652
  return;
171703
171653
  const dependencies = extractDependencies(normalizedPath);
@@ -171715,7 +171665,7 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171715
171665
  const ext = fileName.split(".").pop()?.toLowerCase() ?? "";
171716
171666
  return SCANNABLE_EXTENSIONS.has(ext);
171717
171667
  }, processEntry = (graph, processedFiles, scanDir, normalizedDir, entry) => {
171718
- const fullPath = resolve12(normalizedDir, entry.name);
171668
+ const fullPath = resolve11(normalizedDir, entry.name);
171719
171669
  if (isIgnoredPath(fullPath, entry.name))
171720
171670
  return;
171721
171671
  if (entry.isDirectory()) {
@@ -171741,13 +171691,13 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171741
171691
  });
171742
171692
  };
171743
171693
  const scanDirectory = (dir) => {
171744
- const normalizedDir = resolve12(dir);
171694
+ const normalizedDir = resolve11(dir);
171745
171695
  try {
171746
171696
  scanEntries(normalizedDir);
171747
171697
  } catch {}
171748
171698
  };
171749
171699
  for (const dir of directories) {
171750
- const resolvedDir = resolve12(dir);
171700
+ const resolvedDir = resolve11(dir);
171751
171701
  if (!existsSync11(resolvedDir))
171752
171702
  continue;
171753
171703
  scanDirectory(resolvedDir);
@@ -171857,7 +171807,7 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171857
171807
  return [];
171858
171808
  }
171859
171809
  }, getAffectedFiles = (graph, changedFile) => {
171860
- const normalizedPath = resolve12(changedFile);
171810
+ const normalizedPath = resolve11(changedFile);
171861
171811
  const affected = new Set;
171862
171812
  const toProcess = [normalizedPath];
171863
171813
  const processNode = (current) => {
@@ -171897,7 +171847,7 @@ var emptyDependencyGraph, tsTranspiler, jsTranspiler, loaderForFile = (filePath)
171897
171847
  }
171898
171848
  graph.dependents.delete(normalizedPath);
171899
171849
  }, removeFileFromGraph = (graph, filePath) => {
171900
- const normalizedPath = resolve12(filePath);
171850
+ const normalizedPath = resolve11(filePath);
171901
171851
  removeDepsForFile(graph, normalizedPath);
171902
171852
  removeDependentsForFile(graph, normalizedPath);
171903
171853
  };
@@ -171950,12 +171900,12 @@ var globalVersionCounter = 0, createModuleVersionTracker = () => new Map, getNex
171950
171900
  };
171951
171901
 
171952
171902
  // src/dev/configResolver.ts
171953
- import { resolve as resolve13 } from "path";
171903
+ import { resolve as resolve12 } from "path";
171954
171904
  var resolveBuildPaths = (config) => {
171955
171905
  const cwd2 = process.cwd();
171956
171906
  const normalize = (path) => path.replace(/\\/g, "/");
171957
- const withDefault = (value, fallback) => normalize(resolve13(cwd2, value ?? fallback));
171958
- const optional = (value) => value ? normalize(resolve13(cwd2, value)) : undefined;
171907
+ const withDefault = (value, fallback) => normalize(resolve12(cwd2, value ?? fallback));
171908
+ const optional = (value) => value ? normalize(resolve12(cwd2, value)) : undefined;
171959
171909
  return {
171960
171910
  angularDir: optional(config.angularDirectory),
171961
171911
  assetsDir: optional(config.assetsDirectory),
@@ -172121,7 +172071,7 @@ var init_pathUtils = () => {};
172121
172071
  // src/dev/fileWatcher.ts
172122
172072
  import { watch } from "fs";
172123
172073
  import { existsSync as existsSync12 } from "fs";
172124
- import { join as join12, resolve as resolve14 } from "path";
172074
+ import { join as join12, resolve as resolve13 } from "path";
172125
172075
  var safeRemoveFromGraph = (graph, fullPath) => {
172126
172076
  try {
172127
172077
  removeFileFromGraph(graph, fullPath);
@@ -172166,7 +172116,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
172166
172116
  }, addFileWatchers = (state, paths, onFileChange) => {
172167
172117
  const stylesDir = state.resolvedPaths?.stylesDir;
172168
172118
  paths.forEach((path) => {
172169
- const absolutePath = resolve14(path).replace(/\\/g, "/");
172119
+ const absolutePath = resolve13(path).replace(/\\/g, "/");
172170
172120
  if (!existsSync12(absolutePath)) {
172171
172121
  return;
172172
172122
  }
@@ -172177,7 +172127,7 @@ var safeRemoveFromGraph = (graph, fullPath) => {
172177
172127
  const watchPaths = getWatchPaths(config, state.resolvedPaths);
172178
172128
  const stylesDir = state.resolvedPaths?.stylesDir;
172179
172129
  watchPaths.forEach((path) => {
172180
- const absolutePath = resolve14(path).replace(/\\/g, "/");
172130
+ const absolutePath = resolve13(path).replace(/\\/g, "/");
172181
172131
  if (!existsSync12(absolutePath)) {
172182
172132
  return;
172183
172133
  }
@@ -172192,13 +172142,13 @@ var init_fileWatcher = __esm(() => {
172192
172142
  });
172193
172143
 
172194
172144
  // src/dev/assetStore.ts
172195
- import { resolve as resolve15 } from "path";
172145
+ import { resolve as resolve14 } from "path";
172196
172146
  import { readdir as readdir2, unlink } from "fs/promises";
172197
172147
  var mimeTypes, getMimeType = (filePath) => {
172198
172148
  const ext = filePath.slice(filePath.lastIndexOf("."));
172199
172149
  return mimeTypes[ext] ?? "application/octet-stream";
172200
172150
  }, HASHED_FILE_RE, stripHash = (webPath) => webPath.replace(/\.[a-z0-9]{8}(\.(js|css|mjs))$/, "$1"), processWalkEntry = (entry, dir, liveByIdentity, walkAndClean) => {
172201
- const fullPath = resolve15(dir, entry.name);
172151
+ const fullPath = resolve14(dir, entry.name);
172202
172152
  if (entry.isDirectory()) {
172203
172153
  return walkAndClean(fullPath);
172204
172154
  }
@@ -172214,10 +172164,10 @@ var mimeTypes, getMimeType = (filePath) => {
172214
172164
  }, cleanStaleAssets = async (store, manifest, buildDir) => {
172215
172165
  const liveByIdentity = new Map;
172216
172166
  for (const webPath of store.keys()) {
172217
- const diskPath = resolve15(buildDir, webPath.slice(1));
172167
+ const diskPath = resolve14(buildDir, webPath.slice(1));
172218
172168
  liveByIdentity.set(stripHash(diskPath), diskPath);
172219
172169
  }
172220
- const absBuildDir = resolve15(buildDir);
172170
+ const absBuildDir = resolve14(buildDir);
172221
172171
  Object.values(manifest).forEach((val) => {
172222
172172
  if (!HASHED_FILE_RE.test(val))
172223
172173
  return;
@@ -172235,7 +172185,7 @@ var mimeTypes, getMimeType = (filePath) => {
172235
172185
  } catch {}
172236
172186
  }, lookupAsset = (store, path) => store.get(path), processScanEntry = (entry, dir, prefix, store, scanDir) => {
172237
172187
  if (entry.isDirectory()) {
172238
- return scanDir(resolve15(dir, entry.name), `${prefix}${entry.name}/`);
172188
+ return scanDir(resolve14(dir, entry.name), `${prefix}${entry.name}/`);
172239
172189
  }
172240
172190
  if (!entry.name.startsWith("chunk-")) {
172241
172191
  return null;
@@ -172244,7 +172194,7 @@ var mimeTypes, getMimeType = (filePath) => {
172244
172194
  if (store.has(webPath)) {
172245
172195
  return null;
172246
172196
  }
172247
- return Bun.file(resolve15(dir, entry.name)).bytes().then((bytes) => {
172197
+ return Bun.file(resolve14(dir, entry.name)).bytes().then((bytes) => {
172248
172198
  store.set(webPath, bytes);
172249
172199
  return;
172250
172200
  }).catch(() => {});
@@ -172269,7 +172219,7 @@ var mimeTypes, getMimeType = (filePath) => {
172269
172219
  for (const webPath of newIdentities.values()) {
172270
172220
  if (store.has(webPath))
172271
172221
  continue;
172272
- loadPromises.push(Bun.file(resolve15(buildDir, webPath.slice(1))).bytes().then((bytes) => {
172222
+ loadPromises.push(Bun.file(resolve14(buildDir, webPath.slice(1))).bytes().then((bytes) => {
172273
172223
  store.set(webPath, bytes);
172274
172224
  return;
172275
172225
  }).catch(() => {}));
@@ -172320,9 +172270,9 @@ var init_fileHashTracker = __esm(() => {
172320
172270
  });
172321
172271
 
172322
172272
  // src/dev/reactComponentClassifier.ts
172323
- import { resolve as resolve16 } from "path";
172273
+ import { resolve as resolve15 } from "path";
172324
172274
  var classifyComponent = (filePath) => {
172325
- const normalizedPath = resolve16(filePath);
172275
+ const normalizedPath = resolve15(filePath);
172326
172276
  if (normalizedPath.includes("/react/pages/")) {
172327
172277
  return "server";
172328
172278
  }
@@ -172334,7 +172284,7 @@ var classifyComponent = (filePath) => {
172334
172284
  var init_reactComponentClassifier = () => {};
172335
172285
 
172336
172286
  // src/dev/moduleMapper.ts
172337
- import { basename as basename6, resolve as resolve17 } from "path";
172287
+ import { basename as basename6, resolve as resolve16 } from "path";
172338
172288
  var buildModulePaths = (moduleKeys, manifest) => {
172339
172289
  const modulePaths = {};
172340
172290
  moduleKeys.forEach((key) => {
@@ -172344,7 +172294,7 @@ var buildModulePaths = (moduleKeys, manifest) => {
172344
172294
  });
172345
172295
  return modulePaths;
172346
172296
  }, processChangedFile = (sourceFile, framework, manifest, resolvedPaths, processedFiles) => {
172347
- const normalizedFile = resolve17(sourceFile);
172297
+ const normalizedFile = resolve16(sourceFile);
172348
172298
  const normalizedPath = normalizedFile.replace(/\\/g, "/");
172349
172299
  if (processedFiles.has(normalizedFile)) {
172350
172300
  return null;
@@ -172380,7 +172330,7 @@ var buildModulePaths = (moduleKeys, manifest) => {
172380
172330
  });
172381
172331
  return grouped;
172382
172332
  }, mapSourceFileToManifestKeys = (sourceFile, framework, resolvedPaths) => {
172383
- const normalizedFile = resolve17(sourceFile);
172333
+ const normalizedFile = resolve16(sourceFile);
172384
172334
  const fileName = basename6(normalizedFile);
172385
172335
  const baseName = fileName.replace(/\.(tsx?|jsx?|vue|svelte|css|html)$/, "");
172386
172336
  const pascalName = toPascal(baseName);
@@ -172540,8 +172490,8 @@ var init_webSocket = __esm(() => {
172540
172490
  });
172541
172491
 
172542
172492
  // src/utils/registerClientScript.ts
172543
- var scriptRegistry, requestCounter = 0, getRequestId = () => `req_${Date.now()}_${++requestCounter}`, ssrContextGetter = null, registerClientScript = (script, requestId2) => {
172544
- const id = requestId2 || ssrContextGetter?.() || Object.getOwnPropertyDescriptor(globalThis, "__absolutejs_requestId")?.value || getRequestId();
172493
+ var scriptRegistry, requestCounter = 0, getRequestId = () => `req_${Date.now()}_${++requestCounter}`, ssrContextGetter = null, registerClientScript = (script, requestId) => {
172494
+ const id = requestId || ssrContextGetter?.() || Object.getOwnPropertyDescriptor(globalThis, "__absolutejs_requestId")?.value || getRequestId();
172545
172495
  if (!scriptRegistry.has(id)) {
172546
172496
  scriptRegistry.set(id, new Set);
172547
172497
  }
@@ -172599,8 +172549,8 @@ var scriptRegistry, requestCounter = 0, getRequestId = () => `req_${Date.now()}_
172599
172549
  ${scriptCode}
172600
172550
  })();
172601
172551
  </script>`;
172602
- }, getAndClearClientScripts = (requestId2) => {
172603
- const id = requestId2 || ssrContextGetter?.();
172552
+ }, getAndClearClientScripts = (requestId) => {
172553
+ const id = requestId || ssrContextGetter?.();
172604
172554
  if (!id)
172605
172555
  return [];
172606
172556
  const scripts = scriptRegistry.get(id);
@@ -202090,9 +202040,9 @@ var routePropsCache, cacheRouteData = (pagePath, data) => {
202090
202040
  return html.replace("</html>", `${snippet}</html>`);
202091
202041
  }
202092
202042
  return html + snippet;
202093
- }, injectSsrScripts = (html, requestId2, indexPath) => {
202043
+ }, injectSsrScripts = (html, requestId, indexPath) => {
202094
202044
  let result = html;
202095
- const registeredScripts = getAndClearClientScripts(requestId2);
202045
+ const registeredScripts = getAndClearClientScripts(requestId);
202096
202046
  if (registeredScripts.length > 0) {
202097
202047
  result = injectBeforeClose(result, generateClientScriptCode(registeredScripts));
202098
202048
  }
@@ -202131,8 +202081,8 @@ var ssrDirty = false, lastSelector = "angular-page", invalidateAngularSsrCache =
202131
202081
  ssrDirty = true;
202132
202082
  clearSelectorCache();
202133
202083
  }, angularSsrContext, handleAngularPageRequest = async (_importer, pagePath, indexPath, headTag = "<head></head>", ...props) => {
202134
- const requestId2 = `angular_${Date.now()}_${Math.random().toString(BASE_36_RADIX).substring(2, RANDOM_ID_END_INDEX)}`;
202135
- return angularSsrContext.run(requestId2, async () => {
202084
+ const requestId = `angular_${Date.now()}_${Math.random().toString(BASE_36_RADIX).substring(2, RANDOM_ID_END_INDEX)}`;
202085
+ return angularSsrContext.run(requestId, async () => {
202136
202086
  const [maybeProps] = props;
202137
202087
  cacheRouteData(pagePath, { headTag, props: maybeProps });
202138
202088
  if (ssrDirty) {
@@ -202157,7 +202107,7 @@ var ssrDirty = false, lastSelector = "angular-page", invalidateAngularSsrCache =
202157
202107
  const sanitizer = getSsrSanitizer(deps);
202158
202108
  const providers = buildProviders(deps, sanitizer, maybeProps, tokenMap);
202159
202109
  const rawHtml = await renderAngularApp(deps, PageComponent, providers, htmlString);
202160
- const html = injectSsrScripts(rawHtml, requestId2, indexPath);
202110
+ const html = injectSsrScripts(rawHtml, requestId, indexPath);
202161
202111
  return new Response(html, {
202162
202112
  headers: { "Content-Type": "text/html" }
202163
202113
  });
@@ -202214,7 +202164,7 @@ __export(exports_moduleServer, {
202214
202164
  SRC_URL_PREFIX: () => SRC_URL_PREFIX
202215
202165
  });
202216
202166
  import { readFileSync as readFileSync9, statSync as statSync2 } from "fs";
202217
- import { dirname as dirname7, extname as extname3, resolve as resolve18, relative as relative7 } from "path";
202167
+ import { dirname as dirname7, extname as extname3, resolve as resolve17, relative as relative7 } from "path";
202218
202168
  var SRC_PREFIX = "/@src/", jsTranspiler2, tsTranspiler2, TRANSPILABLE, ALL_EXPORTS_RE, preserveTypeExports = (originalSource, transpiled, valueExports) => {
202219
202169
  const allExports = [];
202220
202170
  let match;
@@ -202253,14 +202203,14 @@ ${stubs}
202253
202203
  });
202254
202204
  const fileDir = dirname7(filePath);
202255
202205
  result = result.replace(/(from\s*["'])(\.\.?\/[^"']+)(["'])/g, (_match, prefix, relPath, suffix) => {
202256
- const absPath = resolve18(fileDir, relPath);
202206
+ const absPath = resolve17(fileDir, relPath);
202257
202207
  const rel = relative7(projectRoot, absPath);
202258
202208
  let srcPath = rel;
202259
202209
  if (!extname3(srcPath)) {
202260
202210
  const extensions = [".tsx", ".ts", ".jsx", ".js"];
202261
202211
  for (const ext of extensions) {
202262
202212
  try {
202263
- statSync2(resolve18(projectRoot, srcPath + ext));
202213
+ statSync2(resolve17(projectRoot, srcPath + ext));
202264
202214
  srcPath += ext;
202265
202215
  break;
202266
202216
  } catch {}
@@ -202269,19 +202219,19 @@ ${stubs}
202269
202219
  return `${prefix}${SRC_PREFIX}${srcPath.replace(/\\/g, "/")}${suffix}`;
202270
202220
  });
202271
202221
  result = result.replace(/(import\s*\(\s*["'])(\.\.?\/[^"']+)(["']\s*\))/g, (_match, prefix, relPath, suffix) => {
202272
- const absPath = resolve18(fileDir, relPath);
202222
+ const absPath = resolve17(fileDir, relPath);
202273
202223
  const rel = relative7(projectRoot, absPath);
202274
202224
  return `${prefix}${SRC_PREFIX}${rel.replace(/\\/g, "/")}${suffix}`;
202275
202225
  });
202276
202226
  result = result.replace(/(import\s*["'])(\.\.?\/[^"']+)(["']\s*;?)/g, (_match, prefix, relPath, suffix) => {
202277
- const absPath = resolve18(fileDir, relPath);
202227
+ const absPath = resolve17(fileDir, relPath);
202278
202228
  const rel = relative7(projectRoot, absPath);
202279
202229
  let srcPath = rel;
202280
202230
  if (!extname3(srcPath)) {
202281
202231
  const extensions = [".tsx", ".ts", ".jsx", ".js", ".css"];
202282
202232
  for (const ext of extensions) {
202283
202233
  try {
202284
- statSync2(resolve18(projectRoot, srcPath + ext));
202234
+ statSync2(resolve17(projectRoot, srcPath + ext));
202285
202235
  srcPath += ext;
202286
202236
  break;
202287
202237
  } catch {}
@@ -202391,7 +202341,7 @@ export default {};
202391
202341
  if (!pathname.startsWith(SRC_PREFIX))
202392
202342
  return;
202393
202343
  const relPath = pathname.slice(SRC_PREFIX.length);
202394
- let filePath = resolve18(projectRoot, relPath);
202344
+ let filePath = resolve17(projectRoot, relPath);
202395
202345
  let ext = extname3(filePath);
202396
202346
  if (!ext) {
202397
202347
  const tryExts = [".tsx", ".ts", ".jsx", ".js"];
@@ -202511,11 +202461,11 @@ var exports_simpleHTMLHMR = {};
202511
202461
  __export(exports_simpleHTMLHMR, {
202512
202462
  handleHTMLUpdate: () => handleHTMLUpdate
202513
202463
  });
202514
- import { resolve as resolve19 } from "path";
202464
+ import { resolve as resolve18 } from "path";
202515
202465
  var handleHTMLUpdate = async (htmlFilePath) => {
202516
202466
  let htmlContent;
202517
202467
  try {
202518
- const resolvedPath = resolve19(htmlFilePath);
202468
+ const resolvedPath = resolve18(htmlFilePath);
202519
202469
  const file4 = Bun.file(resolvedPath);
202520
202470
  if (!await file4.exists()) {
202521
202471
  return null;
@@ -202541,11 +202491,11 @@ var exports_simpleHTMXHMR = {};
202541
202491
  __export(exports_simpleHTMXHMR, {
202542
202492
  handleHTMXUpdate: () => handleHTMXUpdate
202543
202493
  });
202544
- import { resolve as resolve20 } from "path";
202494
+ import { resolve as resolve19 } from "path";
202545
202495
  var handleHTMXUpdate = async (htmxFilePath) => {
202546
202496
  let htmlContent;
202547
202497
  try {
202548
- const resolvedPath = resolve20(htmxFilePath);
202498
+ const resolvedPath = resolve19(htmxFilePath);
202549
202499
  const file4 = Bun.file(resolvedPath);
202550
202500
  if (!await file4.exists()) {
202551
202501
  return null;
@@ -202569,7 +202519,7 @@ var init_simpleHTMXHMR = () => {};
202569
202519
  // src/dev/rebuildTrigger.ts
202570
202520
  import { existsSync as existsSync13 } from "fs";
202571
202521
  import { rm as rm6 } from "fs/promises";
202572
- import { basename as basename7, relative as relative8, resolve as resolve21 } from "path";
202522
+ import { basename as basename7, relative as relative8, resolve as resolve20 } from "path";
202573
202523
  var parseErrorLocationFromMessage = (msg) => {
202574
202524
  const pathLineCol = msg.match(/^([^\s:]+):(\d+)(?::(\d+))?/);
202575
202525
  if (pathLineCol) {
@@ -202641,7 +202591,7 @@ var parseErrorLocationFromMessage = (msg) => {
202641
202591
  state.fileHashes.delete(filePathInSet);
202642
202592
  try {
202643
202593
  const affectedFiles = getAffectedFiles(state.dependencyGraph, filePathInSet);
202644
- const deletedPathResolved = resolve21(filePathInSet);
202594
+ const deletedPathResolved = resolve20(filePathInSet);
202645
202595
  affectedFiles.forEach((affectedFile) => {
202646
202596
  if (isValidDeletedAffectedFile(affectedFile, deletedPathResolved, processedFiles)) {
202647
202597
  validFiles.push(affectedFile);
@@ -202685,7 +202635,7 @@ var parseErrorLocationFromMessage = (msg) => {
202685
202635
  if (storedHash !== undefined && storedHash === fileHash) {
202686
202636
  return;
202687
202637
  }
202688
- const normalizedFilePath = resolve21(filePathInSet);
202638
+ const normalizedFilePath = resolve20(filePathInSet);
202689
202639
  if (!processedFiles.has(normalizedFilePath)) {
202690
202640
  validFiles.push(normalizedFilePath);
202691
202641
  processedFiles.add(normalizedFilePath);
@@ -202776,7 +202726,7 @@ var parseErrorLocationFromMessage = (msg) => {
202776
202726
  }
202777
202727
  if (!graph)
202778
202728
  return componentFile;
202779
- const dependents = graph.dependents.get(resolve21(componentFile));
202729
+ const dependents = graph.dependents.get(resolve20(componentFile));
202780
202730
  if (!dependents)
202781
202731
  return componentFile;
202782
202732
  for (const dep of dependents) {
@@ -202785,7 +202735,7 @@ var parseErrorLocationFromMessage = (msg) => {
202785
202735
  }
202786
202736
  return componentFile;
202787
202737
  }, resolveAngularPageEntries = (state, angularFiles, angularPagesPath) => {
202788
- const pageEntries = angularFiles.filter((file4) => file4.endsWith(".ts") && resolve21(file4).startsWith(angularPagesPath));
202738
+ const pageEntries = angularFiles.filter((file4) => file4.endsWith(".ts") && resolve20(file4).startsWith(angularPagesPath));
202789
202739
  if (pageEntries.length > 0 || !state.dependencyGraph) {
202790
202740
  return pageEntries;
202791
202741
  }
@@ -202794,7 +202744,7 @@ var parseErrorLocationFromMessage = (msg) => {
202794
202744
  const lookupFile = resolveComponentLookupFile(componentFile, state.dependencyGraph);
202795
202745
  const affected = getAffectedFiles(state.dependencyGraph, lookupFile);
202796
202746
  affected.forEach((file4) => {
202797
- if (file4.endsWith(".ts") && resolve21(file4).startsWith(angularPagesPath)) {
202747
+ if (file4.endsWith(".ts") && resolve20(file4).startsWith(angularPagesPath)) {
202798
202748
  resolvedPages.add(file4);
202799
202749
  }
202800
202750
  });
@@ -202875,7 +202825,7 @@ var parseErrorLocationFromMessage = (msg) => {
202875
202825
  const { clientPaths, serverPaths } = await compileAngular2(pageEntries, angularDir, true);
202876
202826
  serverPaths.forEach((serverPath) => {
202877
202827
  const fileBase = basename7(serverPath, ".js");
202878
- state.manifest[toPascal(fileBase)] = resolve21(serverPath);
202828
+ state.manifest[toPascal(fileBase)] = resolve20(serverPath);
202879
202829
  });
202880
202830
  if (clientPaths.length > 0) {
202881
202831
  await bundleAngularClient(state, clientPaths, state.resolvedPaths.buildDir);
@@ -202883,14 +202833,14 @@ var parseErrorLocationFromMessage = (msg) => {
202883
202833
  }, handleAngularFastPath = async (state, config, filesToRebuild, startTime, onRebuildComplete) => {
202884
202834
  const angularDir = config.angularDirectory ?? "";
202885
202835
  const angularFiles = filesToRebuild.filter((file4) => detectFramework(file4, state.resolvedPaths) === "angular");
202886
- const angularPagesPath = resolve21(angularDir, "pages");
202836
+ const angularPagesPath = resolve20(angularDir, "pages");
202887
202837
  const pageEntries = resolveAngularPageEntries(state, angularFiles, angularPagesPath);
202888
202838
  if (pageEntries.length > 0) {
202889
202839
  await compileAndBundleAngular(state, pageEntries, angularDir);
202890
202840
  invalidateAngularSsrCache();
202891
202841
  }
202892
202842
  if (pageEntries.length > 0 && !config.options?.preserveIntermediateFiles) {
202893
- await rm6(resolve21(angularDir, "compiled"), {
202843
+ await rm6(resolve20(angularDir, "compiled"), {
202894
202844
  force: true,
202895
202845
  recursive: true
202896
202846
  });
@@ -202904,7 +202854,7 @@ var parseErrorLocationFromMessage = (msg) => {
202904
202854
  return manifest;
202905
202855
  }, resolveReactEntryForPageFile = (normalized, pagesPathResolved, reactIndexesPath) => {
202906
202856
  const pageName = basename7(normalized, ".tsx");
202907
- const indexPath = resolve21(reactIndexesPath, `${pageName}.tsx`);
202857
+ const indexPath = resolve20(reactIndexesPath, `${pageName}.tsx`);
202908
202858
  if (!existsSync13(indexPath)) {
202909
202859
  return;
202910
202860
  }
@@ -202916,13 +202866,13 @@ var parseErrorLocationFromMessage = (msg) => {
202916
202866
  return;
202917
202867
  }
202918
202868
  const pageName = basename7(dep, ".tsx");
202919
- const indexPath = resolve21(reactIndexesPath, `${pageName}.tsx`);
202869
+ const indexPath = resolve20(reactIndexesPath, `${pageName}.tsx`);
202920
202870
  if (existsSync13(indexPath) && !reactEntries.includes(indexPath)) {
202921
202871
  reactEntries.push(indexPath);
202922
202872
  }
202923
202873
  });
202924
202874
  }, resolveReactEntryForFile = (state, file4, pagesPathResolved, reactIndexesPath, reactEntries) => {
202925
- const normalized = resolve21(file4);
202875
+ const normalized = resolve20(file4);
202926
202876
  if (!normalized.startsWith(pagesPathResolved)) {
202927
202877
  resolveReactEntriesFromDeps(state, normalized, pagesPathResolved, reactIndexesPath, reactEntries);
202928
202878
  return;
@@ -202933,7 +202883,7 @@ var parseErrorLocationFromMessage = (msg) => {
202933
202883
  }
202934
202884
  }, collectReactEntries = (state, filesToRebuild, reactPagesPath, reactIndexesPath) => {
202935
202885
  const reactEntries = [];
202936
- const pagesPathResolved = resolve21(reactPagesPath);
202886
+ const pagesPathResolved = resolve20(reactPagesPath);
202937
202887
  filesToRebuild.forEach((file4) => {
202938
202888
  resolveReactEntryForFile(state, file4, pagesPathResolved, reactIndexesPath, reactEntries);
202939
202889
  });
@@ -202944,7 +202894,7 @@ var parseErrorLocationFromMessage = (msg) => {
202944
202894
  const { getDevVendorPaths: getDevVendorPaths2 } = await Promise.resolve().then(() => exports_devVendorPaths);
202945
202895
  const { rewriteReactImports: rewriteReactImports2 } = await Promise.resolve().then(() => (init_rewriteReactImports(), exports_rewriteReactImports));
202946
202896
  const clientRoot = await computeClientRoot(state.resolvedPaths);
202947
- const refreshEntry = resolve21(reactIndexesPath, "_refresh.tsx");
202897
+ const refreshEntry = resolve20(reactIndexesPath, "_refresh.tsx");
202948
202898
  if (!reactEntries.includes(refreshEntry)) {
202949
202899
  reactEntries.push(refreshEntry);
202950
202900
  }
@@ -202956,7 +202906,7 @@ var parseErrorLocationFromMessage = (msg) => {
202956
202906
  setDevVendorPaths2(vendorPaths);
202957
202907
  }
202958
202908
  const { rmSync: rmSync2 } = await import("fs");
202959
- rmSync2(resolve21(buildDir, "react", "indexes"), {
202909
+ rmSync2(resolve20(buildDir, "react", "indexes"), {
202960
202910
  force: true,
202961
202911
  recursive: true
202962
202912
  });
@@ -202991,8 +202941,8 @@ var parseErrorLocationFromMessage = (msg) => {
202991
202941
  return url;
202992
202942
  }, handleReactFastPath = async (state, config, filesToRebuild, startTime, onRebuildComplete) => {
202993
202943
  const reactDir = config.reactDirectory ?? "";
202994
- const reactPagesPath = resolve21(reactDir, "pages");
202995
- const reactIndexesPath = resolve21(reactDir, "indexes");
202944
+ const reactPagesPath = resolve20(reactDir, "pages");
202945
+ const reactIndexesPath = resolve20(reactDir, "indexes");
202996
202946
  const { buildDir } = state.resolvedPaths;
202997
202947
  const reactFiles = filesToRebuild.filter((file4) => detectFramework(file4, state.resolvedPaths) === "react");
202998
202948
  if (reactFiles.length > 0) {
@@ -203067,7 +203017,7 @@ var parseErrorLocationFromMessage = (msg) => {
203067
203017
  }, handleSvelteFastPath = async (state, config, filesToRebuild, startTime, onRebuildComplete) => {
203068
203018
  const svelteDir = config.svelteDirectory ?? "";
203069
203019
  const { buildDir } = state.resolvedPaths;
203070
- const svelteFiles = filesToRebuild.filter((file4) => file4.endsWith(".svelte") && resolve21(file4).startsWith(resolve21(svelteDir, "pages")));
203020
+ const svelteFiles = filesToRebuild.filter((file4) => file4.endsWith(".svelte") && resolve20(file4).startsWith(resolve20(svelteDir, "pages")));
203071
203021
  if (svelteFiles.length > 0) {
203072
203022
  const { compileSvelte: compileSvelte2 } = await Promise.resolve().then(() => (init_compileSvelte(), exports_compileSvelte));
203073
203023
  const { build: bunBuild5 } = await Promise.resolve(globalThis.Bun);
@@ -203075,8 +203025,8 @@ var parseErrorLocationFromMessage = (msg) => {
203075
203025
  const { svelteServerPaths, svelteIndexPaths, svelteClientPaths } = await compileSvelte2(svelteFiles, svelteDir, new Map, true);
203076
203026
  const serverEntries = [...svelteServerPaths];
203077
203027
  const clientEntries = [...svelteIndexPaths, ...svelteClientPaths];
203078
- const serverRoot = resolve21(svelteDir, "server");
203079
- const serverOutDir = resolve21(buildDir, basename7(svelteDir));
203028
+ const serverRoot = resolve20(svelteDir, "server");
203029
+ const serverOutDir = resolve20(buildDir, basename7(svelteDir));
203080
203030
  const [serverResult, clientResult] = await Promise.all([
203081
203031
  serverEntries.length > 0 ? bunBuild5({
203082
203032
  entrypoints: serverEntries,
@@ -203102,15 +203052,15 @@ var parseErrorLocationFromMessage = (msg) => {
203102
203052
  await handleClientManifestUpdate(state, clientResult, buildDir);
203103
203053
  }
203104
203054
  await Promise.all([
203105
- rm6(resolve21(svelteDir, "client"), {
203055
+ rm6(resolve20(svelteDir, "client"), {
203106
203056
  force: true,
203107
203057
  recursive: true
203108
203058
  }),
203109
- rm6(resolve21(svelteDir, "indexes"), {
203059
+ rm6(resolve20(svelteDir, "indexes"), {
203110
203060
  force: true,
203111
203061
  recursive: true
203112
203062
  }),
203113
- rm6(resolve21(svelteDir, "server"), {
203063
+ rm6(resolve20(svelteDir, "server"), {
203114
203064
  force: true,
203115
203065
  recursive: true
203116
203066
  })
@@ -203143,7 +203093,7 @@ var parseErrorLocationFromMessage = (msg) => {
203143
203093
  }, handleVueFastPath = async (state, config, filesToRebuild, startTime, onRebuildComplete) => {
203144
203094
  const vueDir = config.vueDirectory ?? "";
203145
203095
  const { buildDir } = state.resolvedPaths;
203146
- const vueFiles = filesToRebuild.filter((file4) => file4.endsWith(".vue") && resolve21(file4).startsWith(resolve21(vueDir, "pages")));
203096
+ const vueFiles = filesToRebuild.filter((file4) => file4.endsWith(".vue") && resolve20(file4).startsWith(resolve20(vueDir, "pages")));
203147
203097
  if (vueFiles.length > 0) {
203148
203098
  const { compileVue: compileVue2 } = await Promise.resolve().then(() => (init_compileVue(), exports_compileVue));
203149
203099
  const { build: bunBuild5 } = await Promise.resolve(globalThis.Bun);
@@ -203151,8 +203101,8 @@ var parseErrorLocationFromMessage = (msg) => {
203151
203101
  const { vueServerPaths, vueIndexPaths, vueClientPaths } = await compileVue2(vueFiles, vueDir, true);
203152
203102
  const serverEntries = [...vueServerPaths];
203153
203103
  const clientEntries = [...vueIndexPaths, ...vueClientPaths];
203154
- const serverRoot = resolve21(vueDir, "server");
203155
- const serverOutDir = resolve21(buildDir, basename7(vueDir));
203104
+ const serverRoot = resolve20(vueDir, "server");
203105
+ const serverOutDir = resolve20(buildDir, basename7(vueDir));
203156
203106
  const vueFeatureFlags2 = {
203157
203107
  __VUE_OPTIONS_API__: "true",
203158
203108
  __VUE_PROD_DEVTOOLS__: "true",
@@ -203184,19 +203134,19 @@ var parseErrorLocationFromMessage = (msg) => {
203184
203134
  await handleClientManifestUpdate(state, clientResult, buildDir);
203185
203135
  }
203186
203136
  await Promise.all([
203187
- rm6(resolve21(vueDir, "client"), {
203137
+ rm6(resolve20(vueDir, "client"), {
203188
203138
  force: true,
203189
203139
  recursive: true
203190
203140
  }),
203191
- rm6(resolve21(vueDir, "indexes"), {
203141
+ rm6(resolve20(vueDir, "indexes"), {
203192
203142
  force: true,
203193
203143
  recursive: true
203194
203144
  }),
203195
- rm6(resolve21(vueDir, "server"), {
203145
+ rm6(resolve20(vueDir, "server"), {
203196
203146
  force: true,
203197
203147
  recursive: true
203198
203148
  }),
203199
- rm6(resolve21(vueDir, "compiled"), {
203149
+ rm6(resolve20(vueDir, "compiled"), {
203200
203150
  force: true,
203201
203151
  recursive: true
203202
203152
  })
@@ -203316,10 +203266,10 @@ var parseErrorLocationFromMessage = (msg) => {
203316
203266
  }, computeOutputPagesDir = (state, config, framework) => {
203317
203267
  const isSingle = !config.reactDirectory && !config.svelteDirectory && !config.vueDirectory && (framework === "html" ? !config.htmxDirectory : !config.htmlDirectory);
203318
203268
  if (isSingle) {
203319
- return resolve21(state.resolvedPaths.buildDir, "pages");
203269
+ return resolve20(state.resolvedPaths.buildDir, "pages");
203320
203270
  }
203321
203271
  const dirName = framework === "html" ? basename7(config.htmlDirectory ?? "html") : basename7(config.htmxDirectory ?? "htmx");
203322
- return resolve21(state.resolvedPaths.buildDir, dirName, "pages");
203272
+ return resolve20(state.resolvedPaths.buildDir, dirName, "pages");
203323
203273
  }, processHtmlPageUpdate = async (state, pageFile, builtHtmlPagePath, manifest, duration) => {
203324
203274
  try {
203325
203275
  const { handleHTMLUpdate: handleHTMLUpdate2 } = await Promise.resolve().then(() => (init_simpleHTMLHMR(), exports_simpleHTMLHMR));
@@ -203355,7 +203305,7 @@ var parseErrorLocationFromMessage = (msg) => {
203355
203305
  const outputHtmlPages = computeOutputPagesDir(state, config, "html");
203356
203306
  for (const pageFile of htmlPageFiles) {
203357
203307
  const htmlPageName = basename7(pageFile);
203358
- const builtHtmlPagePath = resolve21(outputHtmlPages, htmlPageName);
203308
+ const builtHtmlPagePath = resolve20(outputHtmlPages, htmlPageName);
203359
203309
  await processHtmlPageUpdate(state, pageFile, builtHtmlPagePath, manifest, duration);
203360
203310
  }
203361
203311
  }, handleVueCssOnlyUpdate = (state, vueCssFiles, manifest, duration) => {
@@ -203420,7 +203370,7 @@ var parseErrorLocationFromMessage = (msg) => {
203420
203370
  const cssKey = `${pascalName}CSS`;
203421
203371
  const cssUrl = manifest[cssKey] || null;
203422
203372
  const { vueHmrMetadata: vueHmrMetadata2 } = await Promise.resolve().then(() => (init_compileVue(), exports_compileVue));
203423
- const hmrMeta = vueHmrMetadata2.get(resolve21(vuePagePath));
203373
+ const hmrMeta = vueHmrMetadata2.get(resolve20(vuePagePath));
203424
203374
  const changeType = hmrMeta?.changeType ?? "full";
203425
203375
  if (changeType === "style-only") {
203426
203376
  broadcastVueStyleOnly(state, vuePagePath, baseName, cssUrl, hmrId, manifest, duration);
@@ -203654,7 +203604,7 @@ var parseErrorLocationFromMessage = (msg) => {
203654
203604
  const outputHtmxPages = computeOutputPagesDir(state, config, "htmx");
203655
203605
  for (const htmxPageFile of htmxPageFiles) {
203656
203606
  const htmxPageName = basename7(htmxPageFile);
203657
- const builtHtmxPagePath = resolve21(outputHtmxPages, htmxPageName);
203607
+ const builtHtmxPagePath = resolve20(outputHtmxPages, htmxPageName);
203658
203608
  await processHtmxPageUpdate(state, htmxPageFile, builtHtmxPagePath, manifest, duration);
203659
203609
  }
203660
203610
  }, collectUpdatedModulePaths = (allModuleUpdates) => {
@@ -203800,13 +203750,13 @@ var parseErrorLocationFromMessage = (msg) => {
203800
203750
  if (state.fileChangeQueue.size === 0) {
203801
203751
  return;
203802
203752
  }
203803
- const pending2 = Array.from(state.fileChangeQueue.keys());
203753
+ const pending = Array.from(state.fileChangeQueue.keys());
203804
203754
  const queuedFiles = [];
203805
203755
  state.fileChangeQueue.forEach((filePaths) => {
203806
203756
  queuedFiles.push(...filePaths);
203807
203757
  });
203808
203758
  state.fileChangeQueue.clear();
203809
- pending2.forEach((file4) => state.rebuildQueue.add(file4));
203759
+ pending.forEach((file4) => state.rebuildQueue.add(file4));
203810
203760
  if (state.rebuildTimeout)
203811
203761
  clearTimeout(state.rebuildTimeout);
203812
203762
  state.rebuildTimeout = setTimeout(() => {
@@ -204014,7 +203964,7 @@ __export(exports_devBuild, {
204014
203964
  });
204015
203965
  import { readdir as readdir3 } from "fs/promises";
204016
203966
  import { statSync as statSync3 } from "fs";
204017
- import { resolve as resolve22 } from "path";
203967
+ import { resolve as resolve21 } from "path";
204018
203968
  var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204019
203969
  const config = {};
204020
203970
  const dirPattern = /(\w+Directory)\s*:\s*['"]([^'"]+)['"]/g;
@@ -204027,7 +203977,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204027
203977
  return Object.keys(config).length > 0 ? config : null;
204028
203978
  }, reloadConfig = async () => {
204029
203979
  try {
204030
- const configPath2 = resolve22(process.env.ABSOLUTE_CONFIG ?? "absolute.config.ts");
203980
+ const configPath2 = resolve21(process.env.ABSOLUTE_CONFIG ?? "absolute.config.ts");
204031
203981
  const source = await Bun.file(configPath2).text();
204032
203982
  return parseDirectoryConfig(source);
204033
203983
  } catch {
@@ -204100,7 +204050,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204100
204050
  state.fileChangeQueue.clear();
204101
204051
  }
204102
204052
  }, handleCachedReload = async () => {
204103
- const serverMtime = statSync3(resolve22(Bun.main)).mtimeMs;
204053
+ const serverMtime = statSync3(resolve21(Bun.main)).mtimeMs;
204104
204054
  const lastMtime = globalThis.__hmrServerMtime;
204105
204055
  globalThis.__hmrServerMtime = serverMtime;
204106
204056
  const cached = globalThis.__hmrDevResult;
@@ -204128,8 +204078,8 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204128
204078
  return true;
204129
204079
  }, resolveAbsoluteVersion2 = async () => {
204130
204080
  const candidates = [
204131
- resolve22(import.meta.dir, "..", "..", "package.json"),
204132
- resolve22(import.meta.dir, "..", "package.json")
204081
+ resolve21(import.meta.dir, "..", "..", "package.json"),
204082
+ resolve21(import.meta.dir, "..", "package.json")
204133
204083
  ];
204134
204084
  for (const candidate of candidates) {
204135
204085
  const found = await tryReadPackageVersion(candidate);
@@ -204142,7 +204092,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204142
204092
  const entries = await readdir3(vendorDir).catch(() => emptyStringArray);
204143
204093
  await Promise.all(entries.map(async (entry) => {
204144
204094
  const webPath = `/${framework}/vendor/${entry}`;
204145
- const bytes = await Bun.file(resolve22(vendorDir, entry)).bytes();
204095
+ const bytes = await Bun.file(resolve21(vendorDir, entry)).bytes();
204146
204096
  assetStore.set(webPath, bytes);
204147
204097
  }));
204148
204098
  }, devBuild = async (config) => {
@@ -204176,7 +204126,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204176
204126
  await populateAssetStore(state.assetStore, manifest ?? {}, state.resolvedPaths.buildDir);
204177
204127
  cleanStaleAssets(state.assetStore, manifest ?? {}, state.resolvedPaths.buildDir);
204178
204128
  const buildReactVendorTask = config.reactDirectory ? buildReactVendor(state.resolvedPaths.buildDir).then(async () => {
204179
- const vendorDir = resolve22(state.resolvedPaths.buildDir, "react", "vendor");
204129
+ const vendorDir = resolve21(state.resolvedPaths.buildDir, "react", "vendor");
204180
204130
  await loadVendorFiles(state.assetStore, vendorDir, "react");
204181
204131
  if (!globalThis.__reactModuleRef) {
204182
204132
  globalThis.__reactModuleRef = await import("react");
@@ -204184,7 +204134,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204184
204134
  return true;
204185
204135
  }) : undefined;
204186
204136
  const buildAngularVendorTask = config.angularDirectory ? buildAngularVendor(state.resolvedPaths.buildDir).then(async () => {
204187
- const vendorDir = resolve22(state.resolvedPaths.buildDir, "angular", "vendor");
204137
+ const vendorDir = resolve21(state.resolvedPaths.buildDir, "angular", "vendor");
204188
204138
  await loadVendorFiles(state.assetStore, vendorDir, "angular");
204189
204139
  return true;
204190
204140
  }) : undefined;
@@ -204198,7 +204148,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204198
204148
  config.htmxDirectory
204199
204149
  ].filter((dir) => Boolean(dir));
204200
204150
  const buildDepVendorTask = buildDepVendor2(state.resolvedPaths.buildDir, sourceDirs).then(async (depPaths) => {
204201
- const vendorDir = resolve22(state.resolvedPaths.buildDir, "vendor");
204151
+ const vendorDir = resolve21(state.resolvedPaths.buildDir, "vendor");
204202
204152
  await loadVendorFiles(state.assetStore, vendorDir, "vendor");
204203
204153
  globalThis.__depVendorPaths = depPaths;
204204
204154
  return true;
@@ -204221,7 +204171,7 @@ var FRAMEWORK_DIR_KEYS, parseDirectoryConfig = (source) => {
204221
204171
  manifest
204222
204172
  };
204223
204173
  globalThis.__hmrDevResult = result;
204224
- globalThis.__hmrServerMtime = statSync3(resolve22(Bun.main)).mtimeMs;
204174
+ globalThis.__hmrServerMtime = statSync3(resolve21(Bun.main)).mtimeMs;
204225
204175
  return result;
204226
204176
  };
204227
204177
  var init_devBuild = __esm(() => {
@@ -204369,46 +204319,9 @@ var asset = (source, name) => {
204369
204319
  var {file } = globalThis.Bun;
204370
204320
 
204371
204321
  // src/react/pageHandler.ts
204372
- var isDev = process.env["NODE_ENV"] === "development";
204373
- var resolveComponentPath = (component) => {
204374
- const name = component.displayName ?? component.name;
204375
- if (!name)
204376
- return null;
204377
- const config = globalThis.__hmrDevResult?.hmrState?.config;
204378
- const reactDir = config?.reactDirectory;
204379
- if (!reactDir)
204380
- return null;
204381
- const { resolve: resolve2, join } = __require("path");
204382
- const { existsSync } = __require("fs");
204383
- const pagesDir = resolve2(reactDir, "pages");
204384
- const candidates = [
204385
- join(pagesDir, `${name}.tsx`),
204386
- join(pagesDir, `${name}.jsx`),
204387
- join(pagesDir, `${name}.ts`)
204388
- ];
204389
- for (const candidate of candidates) {
204390
- if (existsSync(candidate))
204391
- return candidate;
204392
- }
204393
- return null;
204394
- };
204395
204322
  var handleReactPageRequest = async (PageComponent, index, ...props) => {
204396
204323
  try {
204397
204324
  const [maybeProps] = props;
204398
- if (isDev) {
204399
- const componentPath = resolveComponentPath(PageComponent);
204400
- if (componentPath) {
204401
- const { renderInWorker: renderInWorker2 } = await Promise.resolve().then(() => (init_ssrRenderer(), exports_ssrRenderer));
204402
- const html = await renderInWorker2({
204403
- componentPath,
204404
- indexPath: index,
204405
- props: maybeProps
204406
- });
204407
- return new Response(html, {
204408
- headers: { "Content-Type": "text/html" }
204409
- });
204410
- }
204411
- }
204412
204325
  const { createElement } = await import("react");
204413
204326
  const { renderToReadableStream } = await import("react-dom/server");
204414
204327
  const element = maybeProps !== undefined ? createElement(PageComponent, maybeProps) : createElement(PageComponent);
@@ -204437,12 +204350,12 @@ var handleHTMLPageRequest = (pagePath) => file(pagePath);
204437
204350
  var handleHTMXPageRequest = (pagePath) => file(pagePath);
204438
204351
  // src/core/prepare.ts
204439
204352
  import { readFileSync as readFileSync10 } from "fs";
204440
- import { relative as relative9, resolve as resolve23 } from "path";
204353
+ import { relative as relative9, resolve as resolve22 } from "path";
204441
204354
 
204442
204355
  // src/utils/loadConfig.ts
204443
- import { resolve as resolve2 } from "path";
204356
+ import { resolve } from "path";
204444
204357
  var loadConfig = async (configPath) => {
204445
- const resolved = resolve2(configPath ?? process.env.ABSOLUTE_CONFIG ?? "absolute.config.ts");
204358
+ const resolved = resolve(configPath ?? process.env.ABSOLUTE_CONFIG ?? "absolute.config.ts");
204446
204359
  const mod = await import(resolved);
204447
204360
  const config = mod.default ?? mod.config;
204448
204361
  if (!config) {
@@ -204456,9 +204369,9 @@ Expected: export default defineConfig({ ... })`);
204456
204369
  var prepare = async (configOrPath) => {
204457
204370
  const config = await loadConfig(configOrPath);
204458
204371
  const nodeEnv = process.env["NODE_ENV"];
204459
- const isDev3 = nodeEnv === "development";
204460
- const buildDir = resolve23(isDev3 ? config.buildDirectory ?? "build" : process.env.ABSOLUTE_BUILD_DIR ?? config.buildDirectory ?? "build");
204461
- if (isDev3) {
204372
+ const isDev2 = nodeEnv === "development";
204373
+ const buildDir = resolve22(isDev2 ? config.buildDirectory ?? "build" : process.env.ABSOLUTE_BUILD_DIR ?? config.buildDirectory ?? "build");
204374
+ if (isDev2) {
204462
204375
  const { devBuild: devBuild2 } = await Promise.resolve().then(() => (init_devBuild(), exports_devBuild));
204463
204376
  const result = await devBuild2(config);
204464
204377
  const { hmr: hmr2 } = await Promise.resolve().then(() => (init_hmr(), exports_hmr));
@@ -204479,11 +204392,11 @@ var prepare = async (configOrPath) => {
204479
204392
  setGlobalModuleServer2(moduleHandler);
204480
204393
  const hmrPlugin = hmr2(result.hmrState, result.manifest, moduleHandler);
204481
204394
  const { SRC_URL_PREFIX: SRC_URL_PREFIX2 } = await Promise.resolve().then(() => (init_moduleServer(), exports_moduleServer));
204482
- const devIndexDir = resolve23(buildDir, "_src_indexes");
204395
+ const devIndexDir = resolve22(buildDir, "_src_indexes");
204483
204396
  for (const key of Object.keys(result.manifest)) {
204484
204397
  if (key.endsWith("Index") && typeof result.manifest[key] === "string" && result.manifest[key].includes("/indexes/")) {
204485
204398
  const fileName = key.replace(/Index$/, "") + ".tsx";
204486
- const srcPath = resolve23(devIndexDir, fileName);
204399
+ const srcPath = resolve22(devIndexDir, fileName);
204487
204400
  const rel = relative9(process.cwd(), srcPath).replace(/\\/g, "/");
204488
204401
  result.manifest[key] = `${SRC_URL_PREFIX2}${rel}`;
204489
204402
  }
@@ -204654,5 +204567,5 @@ export {
204654
204567
  ANGULAR_INIT_TIMEOUT_MS
204655
204568
  };
204656
204569
 
204657
- //# debugId=EF4F5168681A376D64756E2164756E21
204570
+ //# debugId=68D105519379CD5364756E2164756E21
204658
204571
  //# sourceMappingURL=index.js.map