Skip to content

Commit 4a11b24

Browse files
authored
build(typedoc): bump to latest version (#1530)
* build(typedoc): bump to latest version
1 parent 4055f98 commit 4a11b24

File tree

4 files changed

+63
-49
lines changed

4 files changed

+63
-49
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"custom-element-vs-code-integration": "^1.4.1",
7979
"globby": "^14.0.2",
8080
"husky": "^9.1.7",
81-
"ig-typedoc-theme": "^5.0.4",
81+
"ig-typedoc-theme": "^6.0.0",
8282
"igniteui-theming": "^14.3.1",
8383
"keep-a-changelog": "^2.5.3",
8484
"lint-staged": "^15.2.11",
@@ -99,8 +99,8 @@
9999
"stylelint-scss": "^6.10.0",
100100
"ts-lit-plugin": "^2.0.2",
101101
"tslib": "^2.8.1",
102-
"typedoc": "^0.26.11",
103-
"typedoc-plugin-localization": "^3.0.5",
102+
"typedoc": "^0.27.6",
103+
"typedoc-plugin-localization": "^3.0.6",
104104
"typescript": "^5.6.3",
105105
"vite": "^6.0.3"
106106
},

scripts/build-typedoc.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
import path from 'node:path';
22
import { create } from 'browser-sync';
33
import watch from 'node-watch';
4-
import TypeDoc from 'typedoc';
4+
import { Application } from 'typedoc';
55

66
const browserSync = create();
77
const ROOT = path.join.bind(null, path.resolve('./'));
88

99
const TYPEDOC = {
1010
PLUGINS: {
11-
THEME: ROOT('node_modules', 'ig-typedoc-theme'),
12-
LOCALIZATION: ROOT('node_modules', 'typedoc-plugin-localization'),
11+
THEME: ROOT('node_modules', 'ig-typedoc-theme/dist/index.js'),
12+
LOCALIZATION: ROOT(
13+
'node_modules',
14+
'typedoc-plugin-localization/dist/index.js'
15+
),
1316
},
1417
OUTPUT: ROOT('dist', 'docs', 'typescript'),
1518
EXPORT_JSON_PATH: ROOT(
@@ -90,7 +93,7 @@ async function main() {
9093
entryPointStrategy = 'merge';
9194
}
9295

93-
const app = await TypeDoc.Application.bootstrapWithPlugins({
96+
const app = await Application.bootstrapWithPlugins({
9497
entryPoints,
9598
entryPointStrategy,
9699
plugin: [TYPEDOC.PLUGINS.THEME, TYPEDOC.PLUGINS.LOCALIZATION],

src/components/stepper/step.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default class IgcStepComponent extends LitElement {
143143
@property({ attribute: false })
144144
public visited = false;
145145

146-
/** @hidden @intrnal @private */
146+
/** @hidden @internal @private */
147147
@property({ attribute: false })
148148
public animation: Animation = 'fade';
149149

0 commit comments

Comments
 (0)