typedoc-github-theme 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/dist/GitHubTheme.js +2 -2
  2. package/package.json +10 -11
@@ -7,9 +7,9 @@ export class GitHubTheme extends DefaultTheme {
7
7
  constructor(renderer) {
8
8
  super(renderer);
9
9
  // copy the complete assets
10
- renderer.on(RendererEvent.END, () => {
10
+ renderer.on(RendererEvent.END, (event) => {
11
11
  const from = resolve(dirname(fileURLToPath(import.meta.url)), '../src/assets/');
12
- const to = resolve(this.application.options.getValue('out'), 'assets/');
12
+ const to = resolve(event.outputDirectory, 'assets/');
13
13
  cpSync(from, to, { recursive: true });
14
14
  });
15
15
  // link the css file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "typedoc-github-theme",
3
3
  "description": "Elegant and seamless look and feel for your TypeScript documentation on GitHub Pages",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "type": "module",
@@ -12,20 +12,19 @@
12
12
  "publishConfig": {
13
13
  "provenance": true
14
14
  },
15
- "packageManager": "pnpm@10.7.1",
16
- "dependencies": {},
15
+ "packageManager": "pnpm@10.15.0",
17
16
  "peerDependencies": {
18
17
  "typedoc": "~0.28.0"
19
18
  },
20
19
  "devDependencies": {
21
- "@eslint/js": "9.24.0",
22
- "@types/node": "^18.19.86",
23
- "eslint": "9.24.0",
24
- "eslint-config-prettier": "10.1.1",
25
- "prettier": "3.5.3",
26
- "typedoc": "~0.28.1",
27
- "typescript": "5.8.3",
28
- "typescript-eslint": "8.29.0"
20
+ "@eslint/js": "9.33.0",
21
+ "@types/node": "^18.19.123",
22
+ "eslint": "9.33.0",
23
+ "eslint-config-prettier": "10.1.8",
24
+ "prettier": "3.6.2",
25
+ "typedoc": "~0.28.10",
26
+ "typescript": "5.9.2",
27
+ "typescript-eslint": "8.40.0"
29
28
  },
30
29
  "scripts": {
31
30
  "build": "pnpm build:lib && pnpm build:docs",