@progress/kendo-typescript-api-tasks 2.1.1-dev.0 → 2.1.1-dev.20
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.
- package/README.md +4 -8
- package/package.json +8 -13
- package/vitest.config.mjs +9 -0
- package/jest.config.js +0 -3
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
](https://badge.fury.io/js/%40telerik%2Fkendo-typescript-api-tasks)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# Kendo UI TypeScript API Tasks
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package contains the utilities for generating API documentation.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui.
|
|
10
|
-
|
|
11
|
-
*Copyright © 2022 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
|
|
7
|
+
*Copyright © 2025 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-typescript-api-tasks",
|
|
3
3
|
"description": "Kendo UI API docs package gulp tasks",
|
|
4
|
-
"version": "2.1.1-dev.
|
|
4
|
+
"version": "2.1.1-dev.20+af7ef2b",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"test": "
|
|
9
|
+
"test": "vitest --run"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"Kendo UI",
|
|
@@ -17,18 +17,13 @@
|
|
|
17
17
|
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"glob": "^
|
|
21
|
-
"gulp": "^
|
|
20
|
+
"glob": "^11.0.0",
|
|
21
|
+
"gulp": "^5.0.0",
|
|
22
22
|
"handlebars": "^4.7.7",
|
|
23
23
|
"lodash": "^4.17.21",
|
|
24
|
-
"mkdirp": "^
|
|
24
|
+
"mkdirp": "^3.0.1",
|
|
25
25
|
"typedoc": "0.25.2"
|
|
26
26
|
},
|
|
27
|
-
"overrides": {
|
|
28
|
-
"chokidar": "^3.0.0",
|
|
29
|
-
"glob-stream": "^7.0.0",
|
|
30
|
-
"micromatch": "^4.0.0"
|
|
31
|
-
},
|
|
32
27
|
"repository": {
|
|
33
28
|
"type": "git",
|
|
34
29
|
"url": "git+https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -37,8 +32,8 @@
|
|
|
37
32
|
"access": "public"
|
|
38
33
|
},
|
|
39
34
|
"devDependencies": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
35
|
+
"typescript": "5.2.2",
|
|
36
|
+
"vitest": "^2.1.8"
|
|
42
37
|
},
|
|
43
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "af7ef2be3e8c46f9a24499bd3bb7fd23cedf0a44"
|
|
44
39
|
}
|
package/jest.config.js
DELETED