@constela/start 1.8.2 → 1.8.3

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.
@@ -962,7 +962,8 @@ async function transformMdx(content, file, options) {
962
962
  const dir = dirname(file);
963
963
  slug = dir === "." ? "index" : basename(dir);
964
964
  } else {
965
- slug = filename;
965
+ const dir = dirname(file);
966
+ slug = dir === "." ? filename : `${dir}/${filename}`;
966
967
  }
967
968
  }
968
969
  return {
package/dist/cli/index.js CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  hyperlink,
5
5
  loadConfig,
6
6
  resolveConfig
7
- } from "../chunk-T3HWPPLG.js";
7
+ } from "../chunk-65BRCBTK.js";
8
8
  import "../chunk-3GFRJEKD.js";
9
9
 
10
10
  // src/cli/index.ts
package/dist/index.js CHANGED
@@ -28,7 +28,7 @@ import {
28
28
  transformCsv,
29
29
  transformMdx,
30
30
  transformYaml
31
- } from "./chunk-T3HWPPLG.js";
31
+ } from "./chunk-65BRCBTK.js";
32
32
  import {
33
33
  evaluateMetaExpression,
34
34
  generateHydrationScript,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/start",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "description": "Meta-framework for Constela applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -47,8 +47,8 @@
47
47
  "@constela/compiler": "0.12.0",
48
48
  "@constela/core": "0.13.0",
49
49
  "@constela/router": "15.0.0",
50
- "@constela/runtime": "0.16.5",
51
- "@constela/server": "9.0.0"
50
+ "@constela/server": "9.0.0",
51
+ "@constela/runtime": "0.16.5"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/ws": "^8.5.0",