@absolutejs/absolute 0.19.0-beta.107 → 0.19.0-beta.108

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/build.js CHANGED
@@ -123,7 +123,7 @@ __export(exports_generateReactIndexes, {
123
123
  });
124
124
  import { existsSync, mkdirSync } from "fs";
125
125
  import { readdir, rm, writeFile } from "fs/promises";
126
- import { basename, join, resolve } from "path";
126
+ import { basename, join, relative, resolve } from "path";
127
127
  var {Glob } = globalThis.Bun;
128
128
  var indexContentCache, resolveDevClientDir = () => {
129
129
  const fromSource = resolve(import.meta.dir, "../dev/client");
@@ -412,7 +412,23 @@ var indexContentCache, resolveDevClientDir = () => {
412
412
  ` originalError.apply(console, args);`,
413
413
  ` };`,
414
414
  ` }`,
415
- `}`
415
+ `}`,
416
+ ...isDev ? [
417
+ `
418
+ // Pre-warm the module server cache after hydration.`,
419
+ `// Silently imports the page module so the browser caches`,
420
+ `// all /@src/ URLs. First HMR edit hits warm cache (~20ms)`,
421
+ `// instead of cold fetches (~500ms).`,
422
+ `if (typeof requestIdleCallback !== 'undefined') {`,
423
+ ` requestIdleCallback(() => {`,
424
+ ` import('/@src/${relative(process.cwd(), resolve(reactPagesDirectory, componentName + ".tsx")).replace(/\\/g, "/")}').catch(() => {});`,
425
+ ` });`,
426
+ `} else {`,
427
+ ` setTimeout(() => {`,
428
+ ` import('/@src/${relative(process.cwd(), resolve(reactPagesDirectory, componentName + ".tsx")).replace(/\\/g, "/")}').catch(() => {});`,
429
+ ` }, 1000);`,
430
+ `}`
431
+ ] : []
416
432
  ].join(`
417
433
  `);
418
434
  const indexPath = join(reactIndexesDirectory, `${componentName}.tsx`);
@@ -866,7 +882,7 @@ var devVendorPaths = null, getDevVendorPaths = () => devVendorPaths, setDevVendo
866
882
 
867
883
  // src/build/angularLinkerPlugin.ts
868
884
  import { existsSync as existsSync7, mkdirSync as mkdirSync3, readFileSync as readFileSync3, writeFileSync as writeFileSync2 } from "fs";
869
- import { dirname as dirname2, join as join4, relative, resolve as resolve4 } from "path";
885
+ import { dirname as dirname2, join as join4, relative as relative2, resolve as resolve4 } from "path";
870
886
  import { createHash } from "crypto";
871
887
  var CACHE_DIR, angularLinkerPlugin;
872
888
  var init_angularLinkerPlugin = __esm(() => {
@@ -909,7 +925,7 @@ var init_angularLinkerPlugin = __esm(() => {
909
925
  dirname: dirname2,
910
926
  exists: existsSync7,
911
927
  readFile: readFileSync3,
912
- relative,
928
+ relative: relative2,
913
929
  resolve: resolve4
914
930
  },
915
931
  linkerJitMode: false,
@@ -950,11 +966,11 @@ var HASHED_FILE_PATTERN, cleanStaleOutputs = async (buildPath, currentOutputPath
950
966
  const currentPaths = new Set(currentOutputPaths.map((path) => resolve5(path)));
951
967
  const glob = new Glob4("**/*");
952
968
  const removals = [];
953
- for (const relative2 of glob.scanSync({ cwd: buildPath })) {
954
- const absolute = resolve5(buildPath, relative2);
969
+ for (const relative3 of glob.scanSync({ cwd: buildPath })) {
970
+ const absolute = resolve5(buildPath, relative3);
955
971
  if (currentPaths.has(absolute))
956
972
  continue;
957
- if (!HASHED_FILE_PATTERN.test(relative2))
973
+ if (!HASHED_FILE_PATTERN.test(relative3))
958
974
  continue;
959
975
  removals.push(rm2(absolute, { force: true }));
960
976
  }
@@ -1108,12 +1124,12 @@ var init_startupBanner = __esm(() => {
1108
1124
  // src/utils/logger.ts
1109
1125
  var colors2, frameworkColors, formatPath = (filePath) => {
1110
1126
  const cwd = process.cwd();
1111
- let relative2 = filePath.startsWith(cwd) ? filePath.slice(cwd.length + 1) : filePath;
1112
- relative2 = relative2.replace(/\\/g, "/");
1113
- if (!relative2.startsWith("/")) {
1114
- relative2 = `/${relative2}`;
1127
+ let relative3 = filePath.startsWith(cwd) ? filePath.slice(cwd.length + 1) : filePath;
1128
+ relative3 = relative3.replace(/\\/g, "/");
1129
+ if (!relative3.startsWith("/")) {
1130
+ relative3 = `/${relative3}`;
1115
1131
  }
1116
- return relative2;
1132
+ return relative3;
1117
1133
  }, getFrameworkColor = (framework) => frameworkColors[framework] || colors2.white, log = (action, options) => {
1118
1134
  const timestamp = `${colors2.dim}${formatTimestamp()}${colors2.reset}`;
1119
1135
  const tag = `${colors2.cyan}[hmr]${colors2.reset}`;
@@ -1172,11 +1188,11 @@ var init_logger = __esm(() => {
1172
1188
  });
1173
1189
 
1174
1190
  // src/utils/validateSafePath.ts
1175
- import { resolve as resolve6, relative as relative2 } from "path";
1191
+ import { resolve as resolve6, relative as relative3 } from "path";
1176
1192
  var validateSafePath = (targetPath, baseDirectory) => {
1177
1193
  const absoluteBase = resolve6(baseDirectory);
1178
1194
  const absoluteTarget = resolve6(baseDirectory, targetPath);
1179
- const relativePath = normalizePath(relative2(absoluteBase, absoluteTarget));
1195
+ const relativePath = normalizePath(relative3(absoluteBase, absoluteTarget));
1180
1196
  if (relativePath.startsWith("../") || relativePath === "..") {
1181
1197
  throw new Error(`Unsafe path: ${targetPath}`);
1182
1198
  }
@@ -1198,7 +1214,7 @@ import {
1198
1214
  basename as basename2,
1199
1215
  extname as extname2,
1200
1216
  resolve as resolve7,
1201
- relative as relative3,
1217
+ relative as relative4,
1202
1218
  sep
1203
1219
  } from "path";
1204
1220
  import { env } from "process";
@@ -1262,7 +1278,7 @@ var resolveDevClientDir2 = () => {
1262
1278
  const isModule = src.endsWith(".svelte.ts") || src.endsWith(".svelte.js");
1263
1279
  const preprocessed = isModule ? raw : (await preprocess(raw, {})).code;
1264
1280
  const transpiled = src.endsWith(".ts") || src.endsWith(".svelte.ts") ? transpiler.transformSync(preprocessed) : preprocessed;
1265
- const relDir = dirname3(relative3(svelteRoot, src)).replace(/\\/g, "/");
1281
+ const relDir = dirname3(relative4(svelteRoot, src)).replace(/\\/g, "/");
1266
1282
  const baseName = basename2(src).replace(/\.svelte(\.(ts|js))?$/, "");
1267
1283
  const importPaths = Array.from(transpiled.matchAll(/from\s+['"]([^'"]+)['"]/g)).map((match) => match[1]).filter((path) => path !== undefined);
1268
1284
  const resolvedImports = await Promise.all(importPaths.map((importPath) => resolveSvelte(importPath, src)));
@@ -1281,7 +1297,7 @@ var resolveDevClientDir2 = () => {
1281
1297
  }).js.code;
1282
1298
  let code = raw2.replace(/\.svelte(?:\.(?:ts|js))?(['"])/g, ".js$1");
1283
1299
  if (mode === "client" && isDev) {
1284
- const moduleKey = `/@src/${relative3(process.cwd(), src).replace(/\\/g, "/")}`;
1300
+ const moduleKey = `/@src/${relative4(process.cwd(), src).replace(/\\/g, "/")}`;
1285
1301
  code = code.replace(/if\s*\(import\.meta\.hot\)\s*\{/, `if (typeof window !== "undefined") {
1286
1302
  if (!window.__SVELTE_HMR_ACCEPT__) window.__SVELTE_HMR_ACCEPT__ = {};
1287
1303
  var __hmr_accept = function(cb) { window.__SVELTE_HMR_ACCEPT__[${JSON.stringify(moduleKey)}] = cb; };`);
@@ -1316,10 +1332,10 @@ var resolveDevClientDir2 = () => {
1316
1332
  };
1317
1333
  const roots = await Promise.all(entryPoints.map(build));
1318
1334
  await Promise.all(roots.map(async ({ client }) => {
1319
- const relClientDir = dirname3(relative3(clientDir, client));
1335
+ const relClientDir = dirname3(relative4(clientDir, client));
1320
1336
  const name = basename2(client, extname2(client));
1321
1337
  const indexPath = join6(indexDir, relClientDir, `${name}.js`);
1322
- const importRaw = relative3(dirname3(indexPath), client).split(sep).join("/");
1338
+ const importRaw = relative4(dirname3(indexPath), client).split(sep).join("/");
1323
1339
  const importPath = importRaw.startsWith(".") || importRaw.startsWith("/") ? importRaw : `./${importRaw}`;
1324
1340
  const hmrImports = isDev ? `window.__HMR_FRAMEWORK__ = "svelte";
1325
1341
  import "${hmrClientPath3}";
@@ -1359,7 +1375,7 @@ if (typeof window !== "undefined") {
1359
1375
  return {
1360
1376
  svelteClientPaths: roots.map(({ client }) => client),
1361
1377
  svelteIndexPaths: roots.map(({ client }) => {
1362
- const rel = dirname3(relative3(clientDir, client));
1378
+ const rel = dirname3(relative4(clientDir, client));
1363
1379
  return join6(indexDir, rel, basename2(client));
1364
1380
  }),
1365
1381
  svelteServerPaths: roots.map(({ ssr }) => ssr)
@@ -1384,7 +1400,7 @@ __export(exports_compileVue, {
1384
1400
  });
1385
1401
  import { existsSync as existsSync9 } from "fs";
1386
1402
  import { mkdir as mkdir2 } from "fs/promises";
1387
- import { basename as basename3, dirname as dirname4, join as join7, relative as relative4, resolve as resolve8 } from "path";
1403
+ import { basename as basename3, dirname as dirname4, join as join7, relative as relative5, resolve as resolve8 } from "path";
1388
1404
  var {file: file2, write: write2, Transpiler: Transpiler2 } = globalThis.Bun;
1389
1405
  var resolveDevClientDir3 = () => {
1390
1406
  const fromSource = resolve8(import.meta.dir, "../dev/client");
@@ -1429,7 +1445,7 @@ var resolveDevClientDir3 = () => {
1429
1445
  return "template-only";
1430
1446
  }
1431
1447
  return "full";
1432
- }, generateVueHmrId = (sourceFilePath, vueRootDir) => relative4(vueRootDir, sourceFilePath).replace(/\\/g, "/").replace(/\.vue$/, ""), extractImports = (sourceCode) => Array.from(sourceCode.matchAll(/import\s+[\s\S]+?['"]([^'"]+)['"]/g)).map((match) => match[1]).filter((importPath) => importPath !== undefined), toJs = (filePath) => {
1448
+ }, generateVueHmrId = (sourceFilePath, vueRootDir) => relative5(vueRootDir, sourceFilePath).replace(/\\/g, "/").replace(/\.vue$/, ""), extractImports = (sourceCode) => Array.from(sourceCode.matchAll(/import\s+[\s\S]+?['"]([^'"]+)['"]/g)).map((match) => match[1]).filter((importPath) => importPath !== undefined), toJs = (filePath) => {
1433
1449
  if (filePath.endsWith(".vue"))
1434
1450
  return filePath.replace(/\.vue$/, ".js");
1435
1451
  if (filePath.endsWith(".ts"))
@@ -1456,7 +1472,7 @@ var resolveDevClientDir3 = () => {
1456
1472
  const cachedResult = cacheMap.get(sourceFilePath);
1457
1473
  if (cachedResult)
1458
1474
  return cachedResult;
1459
- const relativeFilePath = relative4(vueRootDir, sourceFilePath).replace(/\\/g, "/");
1475
+ const relativeFilePath = relative5(vueRootDir, sourceFilePath).replace(/\\/g, "/");
1460
1476
  const relativeWithoutExtension = relativeFilePath.replace(/\.vue$/, "");
1461
1477
  const fileBaseName = basename3(sourceFilePath, ".vue");
1462
1478
  const componentId = toKebab(fileBaseName);
@@ -1585,7 +1601,7 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1585
1601
  result.tsHelperPaths.forEach((path) => allTsHelperPaths.add(path));
1586
1602
  const entryBaseName = basename3(entryPath, ".vue");
1587
1603
  const indexOutputFile = join7(indexOutputDir, `${entryBaseName}.js`);
1588
- const clientOutputFile = join7(clientOutputDir, relative4(vueRootDir, entryPath).replace(/\\/g, "/").replace(/\.vue$/, ".js"));
1604
+ const clientOutputFile = join7(clientOutputDir, relative5(vueRootDir, entryPath).replace(/\\/g, "/").replace(/\.vue$/, ".js"));
1589
1605
  await mkdir2(dirname4(indexOutputFile), { recursive: true });
1590
1606
  const vueHmrImports = isDev ? [
1591
1607
  `window.__HMR_FRAMEWORK__ = "vue";`,
@@ -1593,7 +1609,7 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1593
1609
  ] : [];
1594
1610
  await write2(indexOutputFile, [
1595
1611
  ...vueHmrImports,
1596
- `import Comp from "${relative4(dirname4(indexOutputFile), clientOutputFile).replace(/\\/g, "/")}";`,
1612
+ `import Comp from "${relative5(dirname4(indexOutputFile), clientOutputFile).replace(/\\/g, "/")}";`,
1597
1613
  'import { createSSRApp, createApp } from "vue";',
1598
1614
  "",
1599
1615
  "// HMR State Preservation: Check for preserved state from HMR",
@@ -1693,7 +1709,7 @@ if (typeof __VUE_HMR_RUNTIME__ !== 'undefined') {
1693
1709
  await Promise.all(Array.from(allTsHelperPaths).map(async (tsPath) => {
1694
1710
  const sourceCode = await file2(tsPath).text();
1695
1711
  const transpiledCode = transpiler2.transformSync(sourceCode);
1696
- const relativeJsPath = relative4(vueRootDir, tsPath).replace(/\.ts$/, ".js");
1712
+ const relativeJsPath = relative5(vueRootDir, tsPath).replace(/\.ts$/, ".js");
1697
1713
  const outClientPath = join7(clientOutputDir, relativeJsPath);
1698
1714
  const outServerPath = join7(serverOutputDir, relativeJsPath);
1699
1715
  await mkdir2(dirname4(outClientPath), { recursive: true });
@@ -10583,11 +10599,11 @@ ${lanes.join(`
10583
10599
  return toComponents;
10584
10600
  }
10585
10601
  const components = toComponents.slice(start);
10586
- const relative5 = [];
10602
+ const relative6 = [];
10587
10603
  for (;start < fromComponents.length; start++) {
10588
- relative5.push("..");
10604
+ relative6.push("..");
10589
10605
  }
10590
- return ["", ...relative5, ...components];
10606
+ return ["", ...relative6, ...components];
10591
10607
  }
10592
10608
  function getRelativePathFromDirectory(fromDirectory, to, getCanonicalFileNameOrIgnoreCase) {
10593
10609
  Debug.assert(getRootLength(fromDirectory) > 0 === getRootLength(to) > 0, "Paths must either both be absolute or both be relative");
@@ -47883,9 +47899,9 @@ ${lanes.join(`
47883
47899
  if (!startsWithDirectory(target, realPathDirectory, getCanonicalFileName)) {
47884
47900
  return;
47885
47901
  }
47886
- const relative5 = getRelativePathFromDirectory(realPathDirectory, target, getCanonicalFileName);
47902
+ const relative6 = getRelativePathFromDirectory(realPathDirectory, target, getCanonicalFileName);
47887
47903
  for (const symlinkDirectory of symlinkDirectories) {
47888
- const option = resolvePath(symlinkDirectory, relative5);
47904
+ const option = resolvePath(symlinkDirectory, relative6);
47889
47905
  const result2 = cb(option, target === referenceRedirect);
47890
47906
  shouldFilterIgnoredPaths = true;
47891
47907
  if (result2)
@@ -170451,7 +170467,7 @@ __export(exports_compileAngular, {
170451
170467
  compileAngular: () => compileAngular
170452
170468
  });
170453
170469
  import { existsSync as existsSync10, readFileSync as readFileSync4, promises as fs } from "fs";
170454
- import { join as join8, basename as basename4, sep as sep2, dirname as dirname5, resolve as resolve9, relative as relative5 } from "path";
170470
+ import { join as join8, basename as basename4, sep as sep2, dirname as dirname5, resolve as resolve9, relative as relative6 } from "path";
170455
170471
  import { createHash as createHash2 } from "crypto";
170456
170472
  var import_typescript, computeConfigHash = () => {
170457
170473
  try {
@@ -170760,7 +170776,7 @@ export default ${componentClassName};
170760
170776
  await fs.writeFile(ssrDepsFile, ssrDepsContent, "utf-8");
170761
170777
  }
170762
170778
  await fs.writeFile(rawServerFile, rewritten, "utf-8");
170763
- const relativePath = relative5(indexesDir, rawServerFile).replace(/\\/g, "/");
170779
+ const relativePath = relative6(indexesDir, rawServerFile).replace(/\\/g, "/");
170764
170780
  const normalizedImportPath = relativePath.startsWith(".") ? relativePath : `./${relativePath}`;
170765
170781
  const hmrPreamble = hmr ? `window.__HMR_FRAMEWORK__ = "angular";
170766
170782
  import "${hmrRuntimePath}";
@@ -171139,7 +171155,7 @@ import {
171139
171155
  rmSync,
171140
171156
  writeFileSync as writeFileSync3
171141
171157
  } from "fs";
171142
- import { basename as basename5, join as join13, relative as relative6, resolve as resolve10 } from "path";
171158
+ import { basename as basename5, join as join13, relative as relative7, resolve as resolve10 } from "path";
171143
171159
  import { cwd, env as env2, exit } from "process";
171144
171160
  var {build: bunBuild6, Glob: Glob5 } = globalThis.Bun;
171145
171161
  var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental, throwOnError) => {
@@ -171704,7 +171720,7 @@ var isDev, extractBuildError = (logs, pass, label, frameworkNames, isIncremental
171704
171720
  const devIndexDir = join13(buildPath, "_src_indexes");
171705
171721
  mkdirSync8(devIndexDir, { recursive: true });
171706
171722
  const indexFiles = readDir(reactIndexesPath).filter((f) => f.endsWith(".tsx"));
171707
- const pagesRel = relative6(process.cwd(), resolve10(reactPagesPath)).replace(/\\/g, "/");
171723
+ const pagesRel = relative7(process.cwd(), resolve10(reactPagesPath)).replace(/\\/g, "/");
171708
171724
  for (const file3 of indexFiles) {
171709
171725
  let content = readFileSync5(join13(reactIndexesPath, file3), "utf-8");
171710
171726
  content = content.replace(/from\s*['"]\.\.\/pages\/([^'"]+)['"]/g, `from '/@src/${pagesRel}/$1'`);
@@ -202393,7 +202409,7 @@ __export(exports_moduleServer, {
202393
202409
  SRC_URL_PREFIX: () => SRC_URL_PREFIX
202394
202410
  });
202395
202411
  import { existsSync as existsSync13, readFileSync as readFileSync9, statSync } from "fs";
202396
- import { basename as basename7, dirname as dirname7, extname as extname3, resolve as resolve17, relative as relative7 } from "path";
202412
+ import { basename as basename7, dirname as dirname7, extname as extname3, resolve as resolve17, relative as relative8 } from "path";
202397
202413
  var SRC_PREFIX = "/@src/", jsTranspiler2, tsTranspiler2, tsxTranspiler, TRANSPILABLE, ALL_EXPORTS_RE, STRING_CONTENTS_RE, preserveTypeExports = (originalSource, transpiled, valueExports) => {
202398
202414
  const codeOnly = originalSource.replace(STRING_CONTENTS_RE, '""');
202399
202415
  const allExports = [];
@@ -202456,7 +202472,7 @@ ${stubs}
202456
202472
  const fileDir = dirname7(filePath);
202457
202473
  result = result.replace(/(from\s*["'])(\.\.?\/[^"']+)(["'])/g, (_match, prefix, relPath, suffix) => {
202458
202474
  const absPath = resolve17(fileDir, relPath);
202459
- const rel = relative7(projectRoot, absPath);
202475
+ const rel = relative8(projectRoot, absPath);
202460
202476
  let srcPath = rel;
202461
202477
  if (!extname3(srcPath)) {
202462
202478
  const extensions = [
@@ -202477,19 +202493,19 @@ ${stubs}
202477
202493
  }
202478
202494
  if (extname3(srcPath) === ".svelte") {
202479
202495
  const resolved = resolveSvelteModulePath(resolve17(projectRoot, srcPath));
202480
- const resolvedRel = relative7(projectRoot, resolved);
202496
+ const resolvedRel = relative8(projectRoot, resolved);
202481
202497
  srcPath = resolvedRel;
202482
202498
  }
202483
202499
  return `${prefix}${srcUrl(srcPath, projectRoot)}${suffix}`;
202484
202500
  });
202485
202501
  result = result.replace(/(import\s*\(\s*["'])(\.\.?\/[^"']+)(["']\s*\))/g, (_match, prefix, relPath, suffix) => {
202486
202502
  const absPath = resolve17(fileDir, relPath);
202487
- const rel = relative7(projectRoot, absPath);
202503
+ const rel = relative8(projectRoot, absPath);
202488
202504
  return `${prefix}${srcUrl(rel, projectRoot)}${suffix}`;
202489
202505
  });
202490
202506
  result = result.replace(/(import\s*["'])(\.\.?\/[^"']+)(["']\s*;?)/g, (_match, prefix, relPath, suffix) => {
202491
202507
  const absPath = resolve17(fileDir, relPath);
202492
- const rel = relative7(projectRoot, absPath);
202508
+ const rel = relative8(projectRoot, absPath);
202493
202509
  let srcPath = rel;
202494
202510
  if (!extname3(srcPath)) {
202495
202511
  const extensions = [
@@ -202513,10 +202529,10 @@ ${stubs}
202513
202529
  });
202514
202530
  result = result.replace(/((?:from|import)\s*["'])(\/[^"']+\.(tsx?|jsx?|ts))(["'])/g, (_match, prefix, absPath, _ext, suffix) => {
202515
202531
  if (absPath.startsWith(projectRoot)) {
202516
- const rel2 = relative7(projectRoot, absPath).replace(/\\/g, "/");
202532
+ const rel2 = relative8(projectRoot, absPath).replace(/\\/g, "/");
202517
202533
  return `${prefix}${srcUrl(rel2, projectRoot)}${suffix}`;
202518
202534
  }
202519
- const rel = relative7(projectRoot, absPath).replace(/\\/g, "/");
202535
+ const rel = relative8(projectRoot, absPath).replace(/\\/g, "/");
202520
202536
  if (!rel.startsWith("..")) {
202521
202537
  return `${prefix}${srcUrl(rel, projectRoot)}${suffix}`;
202522
202538
  }
@@ -202558,7 +202574,7 @@ ${stubs}
202558
202574
  transpiled = `var $RefreshReg$ = window.$RefreshReg$ || function(){};
202559
202575
  ` + `var $RefreshSig$ = window.$RefreshSig$ || function(){ return function(t){ return t; }; };
202560
202576
  ` + transpiled;
202561
- const relPath = relative7(projectRoot, filePath).replace(/\\/g, "/");
202577
+ const relPath = relative8(projectRoot, filePath).replace(/\\/g, "/");
202562
202578
  transpiled = transpiled.replace(/\binput\.tsx:/g, `${relPath}:`);
202563
202579
  return rewriteImports2(transpiled, filePath, projectRoot, rewriter);
202564
202580
  }, transformPlainFile = (filePath, projectRoot, rewriter) => {
@@ -202625,11 +202641,11 @@ ${stubs}
202625
202641
  if (compiled.css?.code) {
202626
202642
  const cssPath = `${filePath}.css`;
202627
202643
  svelteExternalCss.set(cssPath, compiled.css.code);
202628
- const cssUrl = srcUrl(relative7(projectRoot, cssPath), projectRoot);
202644
+ const cssUrl = srcUrl(relative8(projectRoot, cssPath), projectRoot);
202629
202645
  code = `import "${cssUrl}";
202630
202646
  ${code}`;
202631
202647
  }
202632
- const moduleUrl = `${SRC_PREFIX}${relative7(projectRoot, filePath).replace(/\\/g, "/")}`;
202648
+ const moduleUrl = `${SRC_PREFIX}${relative8(projectRoot, filePath).replace(/\\/g, "/")}`;
202633
202649
  code = code.replace(/if\s*\(import\.meta\.hot\)\s*\{/, `if (typeof window !== "undefined") {
202634
202650
  if (!window.__SVELTE_HMR_ACCEPT__) window.__SVELTE_HMR_ACCEPT__ = {};
202635
202651
  var __hmr_accept = function(cb) { window.__SVELTE_HMR_ACCEPT__[${JSON.stringify(moduleUrl)}] = cb; };`);
@@ -202693,7 +202709,7 @@ ${code}`;
202693
202709
  }
202694
202710
  code = tsTranspiler2.transformSync(code);
202695
202711
  const hmrBase = vueDir ? resolve17(vueDir) : projectRoot;
202696
- const hmrId = relative7(hmrBase, filePath).replace(/\\/g, "/").replace(/\.vue$/, "");
202712
+ const hmrId = relative8(hmrBase, filePath).replace(/\\/g, "/").replace(/\.vue$/, "");
202697
202713
  code = code.replace(/export\s+default\s+/, "var __hmr_comp__ = ");
202698
202714
  code += [
202699
202715
  "",
@@ -203056,7 +203072,7 @@ var init_simpleHTMXHMR = () => {};
203056
203072
  // src/dev/rebuildTrigger.ts
203057
203073
  import { existsSync as existsSync14 } from "fs";
203058
203074
  import { rm as rm8 } from "fs/promises";
203059
- import { basename as basename8, relative as relative8, resolve as resolve20 } from "path";
203075
+ import { basename as basename8, relative as relative9, resolve as resolve20 } from "path";
203060
203076
  var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseErrorLocationFromMessage = (msg) => {
203061
203077
  const pathLineCol = msg.match(/^([^\s:]+):(\d+)(?::(\d+))?/);
203062
203078
  if (pathLineCol) {
@@ -203490,7 +203506,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
203490
203506
  }, getModuleUrl = async (pageFile) => {
203491
203507
  const { invalidateModule: invalidateModule2, warmCache: warmCache2, SRC_URL_PREFIX: SRC_URL_PREFIX2 } = await Promise.resolve().then(() => (init_moduleServer(), exports_moduleServer));
203492
203508
  invalidateModule2(pageFile);
203493
- const rel = relative8(process.cwd(), pageFile).replace(/\\/g, "/");
203509
+ const rel = relative9(process.cwd(), pageFile).replace(/\\/g, "/");
203494
203510
  const url = `${SRC_URL_PREFIX2}${rel}`;
203495
203511
  warmCache2(url);
203496
203512
  return url;
@@ -203527,7 +203543,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
203527
203543
  const pageModuleUrl = await getReactModuleUrl(broadcastTarget);
203528
203544
  if (pageModuleUrl) {
203529
203545
  const serverDuration = Date.now() - startTime;
203530
- state.lastHmrPath = relative8(process.cwd(), primaryFile).replace(/\\/g, "/");
203546
+ state.lastHmrPath = relative9(process.cwd(), primaryFile).replace(/\\/g, "/");
203531
203547
  state.lastHmrFramework = "react";
203532
203548
  broadcastToClients(state, {
203533
203549
  data: {
@@ -203913,7 +203929,7 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, parseError
203913
203929
  const baseName = fileName.replace(/\.vue$/, "");
203914
203930
  const pascalName = toPascal(baseName);
203915
203931
  const vueRoot = config.vueDirectory;
203916
- const hmrId = vueRoot ? relative8(vueRoot, vuePagePath).replace(/\\/g, "/").replace(/\.vue$/, "") : baseName;
203932
+ const hmrId = vueRoot ? relative9(vueRoot, vuePagePath).replace(/\\/g, "/").replace(/\.vue$/, "") : baseName;
203917
203933
  const cssKey = `${pascalName}CSS`;
203918
203934
  const cssUrl = manifest[cssKey] || null;
203919
203935
  const { vueHmrMetadata: vueHmrMetadata2 } = await Promise.resolve().then(() => (init_compileVue(), exports_compileVue));
@@ -204907,5 +204923,5 @@ export {
204907
204923
  build
204908
204924
  };
204909
204925
 
204910
- //# debugId=C820298FC4C29C7664756E2164756E21
204926
+ //# debugId=1C344ED8705E021964756E2164756E21
204911
204927
  //# sourceMappingURL=build.js.map