Skip to content

Commit 00c72f3

Browse files
authored
chore(dts-generator): update dependencies (#490)
1 parent 0e7e951 commit 00c72f3

File tree

3 files changed

+158
-234
lines changed

3 files changed

+158
-234
lines changed

packages/dts-generator/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@
2828
"@ui5/logger": "^3.0.0",
2929
"argparse": "^2.0.1",
3030
"es-main": "^1.3.0",
31-
"fs-extra": "11.2.0",
31+
"fs-extra": "11.3.0",
3232
"lodash": "4.17.21",
3333
"lodash.combinations": "18.11.1",
3434
"node-fetch": "^3.3.2",
35-
"prettier": "3.3.2",
36-
"resolve": "^1.22.8",
37-
"sanitize-html": "2.13.0",
35+
"prettier": "3.5.3",
36+
"resolve": "^1.22.10",
37+
"sanitize-html": "2.14.0",
3838
"strip-json-comments": "^5.0.1",
39-
"typescript": "^5.5.2"
39+
"typescript": "^5.8.2"
4040
},
4141
"devDependencies": {
42-
"@microsoft/api-extractor": "^7.47.0",
43-
"@types/argparse": "^2.0.16",
44-
"@types/lodash": "4.17.5",
45-
"@types/sanitize-html": "2.11.0",
42+
"@microsoft/api-extractor": "^7.51.1",
43+
"@types/argparse": "^2.0.17",
44+
"@types/lodash": "4.17.16",
45+
"@types/sanitize-html": "2.13.0",
4646
"@types/urijs": "1.19.25",
4747
"copyfiles": "^2.4.1",
48-
"del-cli": "^5.1.0",
48+
"del-cli": "^6.0.0",
4949
"npm-run-all": "^4.1.5"
5050
},
5151
"scripts": {

packages/dts-generator/src/download-apijson.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ import {
1717
* Automatically also downloads the api.json files for transitive dependencies.
1818
* These files are needed for using the dts-generator on an own library.
1919
*
20-
* @param libs the OpenUI5 libraries which are direct dependencies (usually sap.ui.core, but could be more)
21-
* @param version the version of UI5 on which this library depends (example: 1.120.2)
22-
* @param targetDir the directory into which the api.json files of the dependencies should be downloaded.
20+
* @param libs - the OpenUI5 libraries which are direct dependencies (usually sap.ui.core, but could be more)
21+
* @param version - the version of UI5 on which this library depends (example: 1.120.2)
22+
* @param targetDir - the directory into which the api.json files of the dependencies should be downloaded.
2323
* The directory must be non-existing or empty. Files that end with *api.json or *.dtsgenrc are ok, but will be deleted.
2424
* If no directory is given, "./temp/dependency-apijson" is used.
25+
* @public
2526
*/
2627
export async function download(
2728
libs: string[],

0 commit comments

Comments
 (0)