@progress/kendo-typescript-api-tasks 2.1.1-dev.0 → 2.1.1-dev.16

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 CHANGED
@@ -1,11 +1,7 @@
1
- # Kendo UI for Angular
1
+ ![npm version](https://badge.fury.io/js/%40telerik%2Fkendo-typescript-api-tasks.svg)](https://badge.fury.io/js/%40telerik%2Fkendo-typescript-api-tasks)
2
2
 
3
- This package is part of the [Kendo UI for Angular](http://www.telerik.com/kendo-angular-ui/) suite.
3
+ # Kendo UI TypeScript API Tasks
4
4
 
5
- ## License
5
+ This package contains the utilities for generating API documentation.
6
6
 
7
- This is commercial software. To use it, you need to agree to the [**Telerik End User License Agreement for Kendo UI Complete**](http://www.telerik.com/purchase/license-agreement/kendo-ui-complete). If you do not own a commercial license, this file shall be governed by the trial license terms.
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.0+7cc2df8",
4
+ "version": "2.1.1-dev.16+dd63893",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "main": "index.js",
8
8
  "scripts": {
9
- "test": "npx jest"
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": "^8.0.3",
21
- "gulp": "^4.0.2",
20
+ "glob": "^11.0.0",
21
+ "gulp": "^5.0.0",
22
22
  "handlebars": "^4.7.7",
23
23
  "lodash": "^4.17.21",
24
- "mkdirp": "^1.0.4",
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
- "jest-cli": "^29.2.2",
41
- "typescript": "5.2.2"
35
+ "typescript": "5.2.2",
36
+ "vitest": "^2.1.8"
42
37
  },
43
- "gitHead": "7cc2df83024b11a5c72d761afa400cb6b5df6bc9"
38
+ "gitHead": "dd63893024483babdc25e4a82da282dec34ac2a2"
44
39
  }
@@ -0,0 +1,9 @@
1
+ /// <reference types="vitest" />
2
+ import { defineConfig } from 'vitest/config';
3
+
4
+ export default defineConfig({
5
+ test: {
6
+ include: [ './test/**/*.js' ],
7
+ globals: true
8
+ }
9
+ });
package/jest.config.js DELETED
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- testMatch: [ '<rootDir>/test/**/*.js' ]
3
- };