Skip to content

Commit 6f8e156

Browse files
chore: Update to 23.2 (#205)
* commit the new 23.2 version * stable version * package name * recover Readme and metadata * remove new page
1 parent ab411a6 commit 6f8e156

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+16649
-23488
lines changed

.gitignore

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,45 +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
34-
/.sass-cache
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
3534
/connect.lock
3635
/coverage
3736
/libpeerconnection.log
38-
npm-debug.log
39-
yarn-error.log
4037
testem.log
4138
/typings
4239

43-
# System Files
40+
# System files
4441
.DS_Store
4542
Thumbs.db

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ For more information about the DevExtreme Angular Template and how to customize
1313
**DevExtreme Angular Template is released as a MIT-licensed (free and open-source) add-on to DevExtreme.**
1414

1515
- [DevExtreme License](https://js.devexpress.com/Licensing/)
16-
- [Free trial](http://js.devexpress.com/Buy/)
16+
- [Free trial](http://js.devexpress.com/Buy/)

angular.json

+21-19
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"DevExtreme-App": {
6+
"DevExtreme-app": {
77
"projectType": "application",
88
"schematics": {
99
"@schematics/angular:component": {
@@ -25,6 +25,9 @@
2525
"@schematics/angular:pipe": {
2626
"skipTests": true
2727
},
28+
"@schematics/angular:resolver": {
29+
"skipTests": true
30+
},
2831
"@schematics/angular:service": {
2932
"skipTests": true
3033
}
@@ -36,10 +39,12 @@
3639
"build": {
3740
"builder": "@angular-devkit/build-angular:browser",
3841
"options": {
39-
"outputPath": "dist/DevExtreme-App",
42+
"outputPath": "dist/DevExtreme-app",
4043
"index": "src/index.html",
4144
"main": "src/main.ts",
42-
"polyfills": "src/polyfills.ts",
45+
"polyfills": [
46+
"zone.js"
47+
],
4348
"tsConfig": "tsconfig.app.json",
4449
"inlineStyleLanguage": "scss",
4550
"assets": [
@@ -61,18 +66,12 @@
6166
{
6267
"type": "initial",
6368
"maximumWarning": "4mb",
64-
"maximumError": "6mb"
69+
"maximumError": "7mb"
6570
},
6671
{
6772
"type": "anyComponentStyle",
68-
"maximumWarning": "6kb",
69-
"maximumError": "10kb"
70-
}
71-
],
72-
"fileReplacements": [
73-
{
74-
"replace": "src/environments/environment.ts",
75-
"with": "src/environments/environment.prod.ts"
73+
"maximumWarning": "2kb",
74+
"maximumError": "4kb"
7675
}
7776
],
7877
"outputHashing": "all"
@@ -92,27 +91,28 @@
9291
"builder": "@angular-devkit/build-angular:dev-server",
9392
"configurations": {
9493
"production": {
95-
"browserTarget": "DevExtreme-App:build:production"
94+
"browserTarget": "DevExtreme-app:build:production"
9695
},
9796
"development": {
98-
"browserTarget": "DevExtreme-App:build:development"
97+
"browserTarget": "DevExtreme-app:build:development"
9998
}
10099
},
101100
"defaultConfiguration": "development"
102101
},
103102
"extract-i18n": {
104103
"builder": "@angular-devkit/build-angular:extract-i18n",
105104
"options": {
106-
"browserTarget": "DevExtreme-App:build"
105+
"browserTarget": "DevExtreme-app:build"
107106
}
108107
},
109108
"test": {
110109
"builder": "@angular-devkit/build-angular:karma",
111110
"options": {
112-
"main": "src/test.ts",
113-
"polyfills": "src/polyfills.ts",
111+
"polyfills": [
112+
"zone.js",
113+
"zone.js/testing"
114+
],
114115
"tsConfig": "tsconfig.spec.json",
115-
"karmaConfig": "karma.conf.js",
116116
"inlineStyleLanguage": "scss",
117117
"assets": [
118118
"src/favicon.ico",
@@ -127,5 +127,7 @@
127127
}
128128
}
129129
},
130-
"defaultProject": "DevExtreme-App"
130+
"cli": {
131+
"analytics": false
132+
}
131133
}

0 commit comments

Comments
 (0)