@absolutejs/absolute 0.19.0-beta.974 → 0.19.0-beta.976

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.
@@ -5767,11 +5767,15 @@ import { existsSync as existsSync5 } from "fs";
5767
5767
  import { basename as basename3, join as join8 } from "path";
5768
5768
  var cache = new Map;
5769
5769
  var BUN_CONTENT_HASH = /\.[a-z0-9]{8}$/;
5770
+ var SSR_INFIX = /\.ssr$/;
5770
5771
  var manifestKeyForPagePath = (pageSourcePath) => {
5771
- const stemWithExt = basename3(pageSourcePath);
5772
- const stem = stemWithExt.replace(/\.[cm]?[tj]sx?$/, "");
5773
- const withoutHash = stem.replace(BUN_CONTENT_HASH, "");
5774
- return toPascal(withoutHash);
5772
+ let stem = basename3(pageSourcePath).replace(/\.[cm]?[tj]sx?$/, "");
5773
+ let prev;
5774
+ do {
5775
+ prev = stem;
5776
+ stem = stem.replace(BUN_CONTENT_HASH, "").replace(SSR_INFIX, "");
5777
+ } while (stem !== prev);
5778
+ return toPascal(stem);
5775
5779
  };
5776
5780
  var loadPageProviders = async (pageSourcePath) => {
5777
5781
  const manifestKey = manifestKeyForPagePath(pageSourcePath);
@@ -5996,5 +6000,5 @@ export {
5996
6000
  ABSOLUTE_HTTP_TRANSFER_CACHE_SKIP_HEADER
5997
6001
  };
5998
6002
 
5999
- //# debugId=DE778C99DCFDF4F664756E2164756E21
6003
+ //# debugId=3F3C8DAE25039F4E64756E2164756E21
6000
6004
  //# sourceMappingURL=server.js.map