@versatiles/release-tool 2.2.2 → 2.2.4

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.
@@ -7,7 +7,7 @@ export async function generateTypescriptDocs(options) {
7
7
  const plugin = [
8
8
  isMarkdown && 'typedoc-plugin-markdown',
9
9
  format === 'wiki' && 'typedoc-github-wiki-theme',
10
- format === 'html' && 'typedoc-unhoax-theme',
10
+ format === 'html' && 'typedoc-github-theme',
11
11
  ].filter(Boolean);
12
12
  const app = await td.Application.bootstrapWithPlugins({
13
13
  entryPoints: [entryPoint ?? './src/index.ts'],
@@ -32,6 +32,9 @@ export async function generateTypescriptDocs(options) {
32
32
  app.options.setValue('propertyMembersFormat', 'table');
33
33
  app.options.setValue('typeDeclarationFormat', 'table');
34
34
  }
35
+ if (format === 'html') {
36
+ app.options.setValue('githubPages', true);
37
+ }
35
38
  const project = await app.convert();
36
39
  if (!project)
37
40
  panic('Failed to convert project');
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env -S node --enable-source-maps
1
+ #!/usr/bin/env node
2
2
  import { Command } from 'commander';
3
3
  /**
4
4
  * Main CLI program, configured with custom text styling for titles, commands, options, etc.
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env -S node --enable-source-maps
1
+ #!/usr/bin/env node
2
2
  import { existsSync, readFileSync, writeFileSync } from 'node:fs';
3
3
  import { resolve } from 'node:path';
4
4
  import { styleText } from 'node:util';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versatiles/release-tool",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "VersaTiles release and documentation tools",
5
5
  "bin": {
6
6
  "vrt": "./dist/index.js"
@@ -36,14 +36,14 @@
36
36
  "@schemastore/package": "^0.0.10",
37
37
  "@types/jest": "^29.5.14",
38
38
  "@types/node": "^22.13.5",
39
- "@typescript-eslint/eslint-plugin": "^8.22.0",
40
- "@typescript-eslint/parser": "^8.22.0",
39
+ "@typescript-eslint/eslint-plugin": "^8.25.0",
40
+ "@typescript-eslint/parser": "^8.25.0",
41
41
  "eslint": "^9.21.0",
42
42
  "jest": "^29.7.0",
43
- "ts-jest": "^29.2.5",
43
+ "ts-jest": "^29.2.6",
44
44
  "tsx": "^4.19.3",
45
45
  "typescript": "^5.7.3",
46
- "typescript-eslint": "^8.24.1"
46
+ "typescript-eslint": "^8.25.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "@inquirer/select": "^4.0.9",
@@ -52,8 +52,8 @@
52
52
  "remark": "^15.0.1",
53
53
  "remark-gfm": "^4.0.1",
54
54
  "typedoc": "^0.27.8",
55
+ "typedoc-github-theme": "^0.2.1",
55
56
  "typedoc-github-wiki-theme": "^2.1.0",
56
- "typedoc-plugin-markdown": "^4.4.2",
57
- "typedoc-unhoax-theme": "^0.4.6"
57
+ "typedoc-plugin-markdown": "^4.4.2"
58
58
  }
59
59
  }