@progress/kendo-typescript-tasks 11.2.4-dev.3 → 11.2.5-dev.0

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,18 @@
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.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-typescript-tasks@11.2.3...@progress/kendo-typescript-tasks@11.2.4) (2022-08-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **typescript-tasks:** update webpack config syntax to v5 ([dd1a78e](https://github.com/telerik/kendo-build-tasks/commit/dd1a78e7ad32fd9e0abb78f5bc4a6d9b79705db2))
12
+ * vue related generated api pages ([7045ec9](https://github.com/telerik/kendo-build-tasks/commit/7045ec905dfc265fdb162342c6c3e83ba7c42159))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [11.2.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-typescript-tasks@11.2.2...@progress/kendo-typescript-tasks@11.2.3) (2022-06-21)
7
19
 
8
20
 
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.4-dev.3+e7ffb3a",
5
+ "version": "11.2.5-dev.0+8b55e75",
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.3-dev.10+e7ffb3a",
21
+ "@progress/kendo-common-tasks": "8.0.3-dev.20+8b55e75",
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": "e7ffb3aee604bca2f3b0efb90e958e8dc42eff31"
51
+ "gitHead": "8b55e755e7ab09d16897e8115eb947fb19a1d481"
52
52
  }
@@ -232,6 +232,8 @@ const packagePlatform = (packageInfo) => {
232
232
  platform = 'Angular';
233
233
  } else if (/-react-/.test(packageInfo.name)) {
234
234
  platform = 'React';
235
+ } else if (/-vue-/.test(packageInfo.name)) {
236
+ platform = 'Vue';
235
237
  }
236
238
 
237
239
  return platform;
package/src/api/slug.js CHANGED
@@ -3,7 +3,6 @@
3
3
  const slug = (packageName, memberName) => [
4
4
  'api',
5
5
  packageName.replace(/.*\//, '').replace(/kendo-(angular|react|vue)-/, ''),
6
- (packageName.indexOf('kendo-vue-') !== -1) ? 'native' : '' ,
7
6
  (memberName || '').toLowerCase()
8
7
  ].filter(p => p).join('_');
9
8
 
package/webpack.config.js CHANGED
@@ -17,7 +17,7 @@ const tsLoader = (compilerOptions) => ({
17
17
  test: /\.ts?$/,
18
18
  exclude: /(node_modules)/,
19
19
  loader: require.resolve('ts-loader'),
20
- query: {
20
+ options: {
21
21
  compilerOptions
22
22
  }
23
23
  });
@@ -49,7 +49,7 @@ module.exports = commonTasks.webpackCommonConfig({ stubResources: true }, {
49
49
  {
50
50
  test: /\.ts$/,
51
51
  loader: 'ts-loader',
52
- query: {
52
+ options: {
53
53
  "compilerOptions": {
54
54
  "removeComments": true
55
55
  }