@progress/kendo-typescript-tasks 11.2.6-dev.2 → 11.2.6

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.2.6](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-typescript-tasks@11.2.5...@progress/kendo-typescript-tasks@11.2.6) (2022-09-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * inner api inputs are not sorted properly ([#370](https://github.com/telerik/kendo-build-tasks/issues/370)) ([c0032c9](https://github.com/telerik/kendo-build-tasks/commit/c0032c94e1874fa029a44af303c3d3673c783697))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [11.2.5](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-typescript-tasks@11.2.4...@progress/kendo-typescript-tasks@11.2.5) (2022-08-22)
7
18
 
8
19
  **Note:** Version bump only for package @progress/kendo-typescript-tasks
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.2+c0fe6bd",
5
+ "version": "11.2.6",
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.2+c0fe6bd",
21
+ "@progress/kendo-common-tasks": "^8.0.3",
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": "c0fe6bd2d9c132a0e58b6a6bd09b44645dc7dbba"
51
+ "gitHead": "862bce065e4e17414e3aade208c673a8a63eee2c"
52
52
  }
@@ -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();