Skip to content

Commit 4c5270c

Browse files
committed
deps(typedoc): bump to latest version
1 parent c96cf90 commit 4c5270c

File tree

3 files changed

+81
-57
lines changed

3 files changed

+81
-57
lines changed

package-lock.json

Lines changed: 61 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
"custom-element-vs-code-integration": "^1.5.0",
8181
"globby": "^15.0.0",
8282
"husky": "^9.1.7",
83-
"ig-typedoc-theme": "^6.2.3",
83+
"ig-typedoc-theme": "^7.0.0-beta.1",
8484
"igniteui-i18n-resources": "0.6.0-alpha.4",
85-
"igniteui-theming": "^21.0.2",
85+
"igniteui-theming": "^22.1.0",
8686
"keep-a-changelog": "^2.7.1",
8787
"lint-staged": "^16.2.5",
8888
"lit-analyzer": "^2.0.3",
@@ -101,8 +101,8 @@
101101
"stylelint-scss": "^6.12.1",
102102
"ts-lit-plugin": "^2.0.2",
103103
"tslib": "^2.8.1",
104-
"typedoc": "~0.27.9",
105-
"typedoc-plugin-localization": "^3.0.6",
104+
"typedoc": "~0.28.14",
105+
"typedoc-plugin-localization": "^3.1.0-beta.1",
106106
"typescript": "^5.8.3",
107107
"vite": "^7.1.11"
108108
},

scripts/build-typedoc.js

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,26 @@ const TYPEDOC = {
1515
'typedoc-plugin-localization/dist/index.js'
1616
),
1717
},
18-
OUTPUT: ROOT('dist', 'docs', 'typescript'),
18+
OUTPUT: ROOT(path.posix.join('dist', 'docs', 'typescript')),
1919
EXPORT_JSON_PATH: ROOT(
20-
'dist',
21-
'docs',
22-
'typescript-exported',
23-
'ignite-ui-web-components.json'
20+
path.posix.join(
21+
'dist',
22+
'docs',
23+
'typescript-exported',
24+
'ignite-ui-web-components.json'
25+
)
2426
),
2527
IMPORT_JSON_PATH: ROOT(
26-
'i18nRepo',
27-
'typedoc',
28-
'ja',
29-
'ignite-ui-web-components.json'
28+
path.posix.join(
29+
'i18nRepo',
30+
'typedoc',
31+
'ja',
32+
'ignite-ui-web-components.json'
33+
)
3034
),
31-
PROJECT_PATH: ROOT('src', 'index.ts'),
35+
PROJECT_PATH: ROOT(path.posix.join('src', 'index.ts')),
3236
TEMPLATE_STRINGS_PATH: ROOT(
33-
'extras',
34-
'template',
35-
'strings',
36-
'shell-strings.json'
37+
path.posix.join('extras', 'template', 'strings', 'shell-strings.json')
3738
),
3839
};
3940

@@ -99,6 +100,7 @@ async function main() {
99100
entryPointStrategy,
100101
plugin: [TYPEDOC.PLUGINS.THEME, TYPEDOC.PLUGINS.LOCALIZATION],
101102
theme: 'igtheme',
103+
router: 'structure',
102104
excludePrivate: true,
103105
excludeProtected: true,
104106
excludeNotDocumented: true,

0 commit comments

Comments
 (0)