Skip to content

Commit 039a0de

Browse files
authored
Merge pull request #12292 from IgniteUI/dTsvetkov/update-typedoc-typescript-deps
chore(deps): update typedoc, typescript and plugin deps
2 parents a9fba21 + 56f47c9 commit 039a0de

26 files changed

+174
-167
lines changed

.github/workflows/nodejs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,26 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v3
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
2929
- name: Install packages
3030
run: npm ci
31-
- name: Lint
31+
- name: Lint Lib
3232
run: npm run lint:lib
3333
env:
3434
NODE_OPTIONS: --max_old_space_size=4096
3535
- name: Lint i18n
3636
run: npm run lint:i18n
37-
- name: Build
37+
- name: Build Lib
3838
run: npm run build:lib
39+
- name: Build TypeDoc & SassDoc
40+
run: |
41+
npm run build:typedoc:en:production
42+
npm run build:sassdoc:en:production
3943
- name: Test
4044
run: |
4145
npm run test:lib
@@ -49,11 +53,7 @@ jobs:
4953
npm run build:i18n
5054
npm run test:i18n:dist
5155
- name: Publish to coveralls.io
52-
if: github.repository == 'IgniteUI/igniteui-angular' && matrix.node-version == '14.x'
56+
if: github.repository == 'IgniteUI/igniteui-angular' && matrix.node-version == '16.x'
5357
uses: coverallsapp/[email protected]
5458
with:
5559
github-token: ${{ github.token }}
56-
- name: Build TypeDoc & SassDoc
57-
run: |
58-
npm run build:typedoc:en:production
59-
npm run build:sassdoc:en:production

package-lock.json

Lines changed: 89 additions & 72 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
@@ -113,7 +113,7 @@
113113
"gulp-uglify": "^3.0.1",
114114
"gulp-util": "^3.0.8",
115115
"hammer-simulator": "0.0.1",
116-
"ig-typedoc-theme": "^4.1.0",
116+
"ig-typedoc-theme": "^4.2.0",
117117
"igniteui-sassdoc-theme": "^1.1.4",
118118
"igniteui-theming": "^1.1.2",
119119
"igniteui-webcomponents": "^3.3.0",
@@ -134,9 +134,9 @@
134134
"stylelint": "^14.4.0",
135135
"stylelint-scss": "^4.1.0",
136136
"ts-node": "^10.8.1",
137-
"typedoc": "^0.22.13",
138-
"typedoc-plugin-localization": "^2.3.0",
139-
"typescript": "4.7.4",
137+
"typedoc": "^0.23.17",
138+
"typedoc-plugin-localization": "^2.4.0",
139+
"typescript": "4.8.4",
140140
"webpack-sources": "1.3.0"
141141
}
142142
}

projects/igniteui-angular/src/lib/combo/combo-add-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class IgxComboAddItemComponent extends IgxComboItemComponent {
1717
}
1818

1919
/**
20-
* @inheritdoc
20+
* @inheritDoc
2121
*/
2222
public clicked(event?) {// eslint-disable-line
2323
this.comboAPI.disableTransitions = false;

projects/igniteui-angular/src/lib/combo/combo-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class IgxComboItemComponent extends IgxDropDownItemComponent {
9696
}
9797

9898
/**
99-
* @inheritdoc
99+
* @inheritDoc
100100
*/
101101
public clicked(event): void {
102102
this.comboAPI.disableTransitions = false;

0 commit comments

Comments
 (0)