@absolutejs/absolute 0.19.0-beta.1092 → 0.19.0-beta.1094

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.
@@ -1,18 +1,3 @@
1
- /** Extract SPA child routes from a Vue page's source.
2
- *
3
- * Looks for `export const routes = defineRoutes([ ... ])` and parses
4
- * each entry's `{ path, component: () => import('./X.vue') }` shape
5
- * into a `{ path, importPath }` pair. The result drives the per-route
6
- * CSS side-manifest emitted in `core/build.ts` so the SSR handler can
7
- * inline the matched child route's compiled CSS (see
8
- * `utils/spaRouteCss.ts` for the runtime side).
9
- *
10
- * Regex-based on purpose: the supported shape is single-statement
11
- * array-of-object-literals, which is the only form `defineRoutes` is
12
- * documented to take. AST parsing would catch a few exotic edge cases
13
- * but adds a dependency on every page compile; the failure mode of a
14
- * miss is "child route CSS isn't inlined for that route", same as
15
- * pre-feature behaviour, so a loose regex is the right trade-off. */
16
1
  export type ParsedVueSpaRoute = {
17
2
  path: string;
18
3
  importPath: string;
package/package.json CHANGED
@@ -424,7 +424,7 @@
424
424
  ]
425
425
  }
426
426
  },
427
- "version": "0.19.0-beta.1092",
427
+ "version": "0.19.0-beta.1094",
428
428
  "workspaces": [
429
429
  "tests/fixtures/*",
430
430
  "tests/fixtures/_packages/*"