Skip to content

Commit 6213dd0

Browse files
authored
chore: update grid performance versions (#4232)
* chore: update grid performance versions
1 parent 11ce21a commit 6213dd0

20 files changed

+10528
-6177
lines changed

examples-standalone/grid-performance/.browserslistrc

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,42 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3-
# compiled output
3+
# Compiled output
44
/dist
55
/tmp
66
/out-tsc
7-
# Only exists if Bazel was run
87
/bazel-out
98

10-
# dependencies
9+
# Node
1110
/node_modules
12-
13-
# profiling files
14-
chrome-profiler-events*.json
11+
npm-debug.log
12+
yarn-error.log
1513

1614
# IDEs and editors
17-
/.idea
15+
.idea/
1816
.project
1917
.classpath
2018
.c9/
2119
*.launch
2220
.settings/
2321
*.sublime-workspace
2422

25-
# IDE - VSCode
23+
# Visual Studio Code
2624
.vscode/*
2725
!.vscode/settings.json
2826
!.vscode/tasks.json
2927
!.vscode/launch.json
3028
!.vscode/extensions.json
3129
.history/*
3230

33-
# misc
31+
# Miscellaneous
3432
/.angular/cache
35-
/.sass-cache
33+
.sass-cache/
3634
/connect.lock
3735
/coverage
3836
/libpeerconnection.log
39-
npm-debug.log
40-
yarn-error.log
4137
testem.log
4238
/typings
4339

44-
# System Files
40+
# System files
4541
.DS_Store
4642
Thumbs.db
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# GridPerformance
22

3-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.1.
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0.
44

55
## Getting Started
66

77
1. Clone or download the source code from GitHub `git clone https://github.com/telerik/kendo-angular.git`.
88
1. Enter the project directory by running `cd examples-standalone/grid-performance`.
99
1. Install the node modules with `npm install`.
1010
1. Run the project with `ng serve`.
11-
1. Open http://localhost:4200.
11+
1. Open http://localhost:4200.

examples-standalone/grid-performance/angular.json

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,20 @@
55
"projects": {
66
"grid-performance": {
77
"projectType": "application",
8-
"schematics": {
9-
"@schematics/angular:application": {
10-
"strict": true
11-
}
12-
},
8+
"schematics": {},
139
"root": "",
1410
"sourceRoot": "src",
1511
"prefix": "app",
1612
"architect": {
1713
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1915
"options": {
2016
"outputPath": "dist/grid-performance",
2117
"index": "src/index.html",
22-
"main": "src/main.ts",
23-
"polyfills": "src/polyfills.ts",
18+
"browser": "src/main.ts",
19+
"polyfills": [
20+
"zone.js"
21+
],
2422
"tsConfig": "tsconfig.app.json",
2523
"assets": [
2624
"src/favicon.ico",
@@ -39,30 +37,21 @@
3937
"budgets": [
4038
{
4139
"type": "initial",
42-
"maximumWarning": "500kb",
43-
"maximumError": "1mb"
40+
"maximumWarning": "8mb",
41+
"maximumError": "10mb"
4442
},
4543
{
4644
"type": "anyComponentStyle",
4745
"maximumWarning": "2kb",
4846
"maximumError": "4kb"
4947
}
5048
],
51-
"fileReplacements": [
52-
{
53-
"replace": "src/environments/environment.ts",
54-
"with": "src/environments/environment.prod.ts"
55-
}
56-
],
5749
"outputHashing": "all"
5850
},
5951
"development": {
60-
"buildOptimizer": false,
6152
"optimization": false,
62-
"vendorChunk": true,
6353
"extractLicenses": false,
64-
"sourceMap": true,
65-
"namedChunks": true
54+
"sourceMap": true
6655
}
6756
},
6857
"defaultConfiguration": "production"
@@ -71,27 +60,28 @@
7160
"builder": "@angular-devkit/build-angular:dev-server",
7261
"configurations": {
7362
"production": {
74-
"browserTarget": "grid-performance:build:production"
63+
"buildTarget": "grid-performance:build:production"
7564
},
7665
"development": {
77-
"browserTarget": "grid-performance:build:development"
66+
"buildTarget": "grid-performance:build:development"
7867
}
7968
},
8069
"defaultConfiguration": "development"
8170
},
8271
"extract-i18n": {
8372
"builder": "@angular-devkit/build-angular:extract-i18n",
8473
"options": {
85-
"browserTarget": "grid-performance:build"
74+
"buildTarget": "grid-performance:build"
8675
}
8776
},
8877
"test": {
8978
"builder": "@angular-devkit/build-angular:karma",
9079
"options": {
91-
"main": "src/test.ts",
92-
"polyfills": "src/polyfills.ts",
80+
"polyfills": [
81+
"zone.js",
82+
"zone.js/testing"
83+
],
9384
"tsConfig": "tsconfig.spec.json",
94-
"karmaConfig": "karma.conf.js",
9585
"assets": [
9686
"src/favicon.ico",
9787
"src/assets"
@@ -107,6 +97,5 @@
10797
}
10898
}
10999
}
110-
},
111-
"defaultProject": "grid-performance"
100+
}
112101
}

examples-standalone/grid-performance/karma.conf.js

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)