@progress/kendo-typescript-tasks 11.2.6-dev.3 → 11.2.6-dev.4
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/package.json +3 -3
- package/src/api/generator.js +2 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@progress/kendo-typescript-tasks",
|
|
3
3
|
"description": "Kendo UI TypeScript package gulp tasks",
|
|
4
4
|
"main": "gulp-tasks.js",
|
|
5
|
-
"version": "11.2.6-dev.
|
|
5
|
+
"version": "11.2.6-dev.4+c0032c9",
|
|
6
6
|
"author": "Telerik",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"scripts": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"typescript": "^4.3.4"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@progress/kendo-common-tasks": "8.0.4-dev.
|
|
21
|
+
"@progress/kendo-common-tasks": "8.0.4-dev.4+c0032c9",
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "4.28.2",
|
|
23
23
|
"@typescript-eslint/parser": "4.28.2",
|
|
24
24
|
"core-js": "^3.18.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c0032c94e1874fa029a44af303c3d3673c783697"
|
|
52
52
|
}
|
package/src/api/generator.js
CHANGED
|
@@ -157,7 +157,7 @@ const extractMembers = (packageName, modules, config) => {
|
|
|
157
157
|
module: moduleRoot(module.name, rootModules),
|
|
158
158
|
name: child.name,
|
|
159
159
|
comment: child.comment,
|
|
160
|
-
children: child.children,
|
|
160
|
+
children: child.children?.sort(utils.nameComparer),
|
|
161
161
|
decorators: child.decorators,
|
|
162
162
|
type: child.type,
|
|
163
163
|
kind: kind(child, module),
|
|
@@ -251,6 +251,7 @@ const generate = (done, config, packageInfo) => {
|
|
|
251
251
|
|
|
252
252
|
writeFile(`${outPath}/index.md`, indexPage(packageInfo.name, membersByModule, info));
|
|
253
253
|
writeFile(`${outPath}/_meta.yml`, `---\ntitle: API\n---\n`);
|
|
254
|
+
|
|
254
255
|
members.forEach(member => writeMember(outPath, member, info));
|
|
255
256
|
|
|
256
257
|
const warnings = utils.warnings();
|