typedoc 0.23.12 → 0.23.13

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.
@@ -196,7 +196,8 @@ function deriveRootDir(packageGlobPaths) {
196
196
  const globs = (0, paths_1.createMinimatch)(packageGlobPaths);
197
197
  const rootPaths = globs.flatMap((glob) => (0, array_1.filterMap)(glob.set, (set) => {
198
198
  const stop = set.findIndex((part) => typeof part !== "string");
199
- return stop === -1 ? set.join("/") : set.slice(0, stop).join("/");
199
+ const path = stop === -1 ? set : set.slice(0, stop);
200
+ return `/${path.join("/")}`;
200
201
  }));
201
202
  return (0, fs_1.getCommonDirectory)(rootPaths);
202
203
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "typedoc",
3
3
  "description": "Create api documentation for TypeScript projects.",
4
- "version": "0.23.12",
4
+ "version": "0.23.13",
5
5
  "homepage": "https://typedoc.org",
6
6
  "main": "./dist/index.js",
7
7
  "exports": {
@@ -40,7 +40,7 @@
40
40
  "@types/node": "14",
41
41
  "@typescript-eslint/eslint-plugin": "^5.36.1",
42
42
  "@typescript-eslint/parser": "^5.36.1",
43
- "@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#b88cd06fe814614a0d924af9d10d04ff95a551de",
43
+ "@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#5a9486bc66f6e36988106685768396281f6cbc10",
44
44
  "c8": "^7.12.0",
45
45
  "esbuild": "^0.15.6",
46
46
  "eslint": "^8.23.0",