Skip to content

Commit f794926

Browse files
authored
Update Angular Template (DevExtreme CLI 1.11.0) (#211)
1 parent fcaf3af commit f794926

46 files changed

Lines changed: 8106 additions & 12225 deletions

Some content is hidden

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

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ trim_trailing_whitespace = true
1010

1111
[*.ts]
1212
quote_type = single
13+
ij_typescript_use_double_quotes = false
1314

1415
[*.md]
1516
max_line_length = off

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist

angular.json

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@
88
"schematics": {
99
"@schematics/angular:component": {
1010
"style": "scss",
11-
"skipTests": true,
12-
"standalone": false
11+
"skipTests": true
1312
},
1413
"@schematics/angular:class": {
1514
"skipTests": true
1615
},
1716
"@schematics/angular:directive": {
18-
"skipTests": true,
19-
"standalone": false
17+
"skipTests": true
2018
},
2119
"@schematics/angular:guard": {
2220
"skipTests": true
@@ -25,8 +23,7 @@
2523
"skipTests": true
2624
},
2725
"@schematics/angular:pipe": {
28-
"skipTests": true,
29-
"standalone": false
26+
"skipTests": true
3027
},
3128
"@schematics/angular:resolver": {
3229
"skipTests": true
@@ -40,19 +37,19 @@
4037
"prefix": "app",
4138
"architect": {
4239
"build": {
43-
"builder": "@angular-devkit/build-angular:application",
40+
"builder": "@angular/build:application",
4441
"options": {
45-
"outputPath": "dist/DevExtreme-app",
46-
"index": "src/index.html",
4742
"browser": "src/main.ts",
4843
"polyfills": [
4944
"zone.js"
5045
],
5146
"tsConfig": "tsconfig.app.json",
5247
"inlineStyleLanguage": "scss",
5348
"assets": [
54-
"src/favicon.ico",
55-
"src/assets"
49+
{
50+
"glob": "**/*",
51+
"input": "public"
52+
}
5653
],
5754
"styles": [
5855
"node_modules/devextreme/dist/css/dx.common.css",
@@ -63,8 +60,7 @@
6360
"src/dx-styles.scss",
6461
"src/variables.scss",
6562
"src/styles.scss"
66-
],
67-
"scripts": []
63+
]
6864
},
6965
"configurations": {
7066
"production": {
@@ -76,8 +72,8 @@
7672
},
7773
{
7874
"type": "anyComponentStyle",
79-
"maximumWarning": "2kb",
80-
"maximumError": "4kb"
75+
"maximumWarning": "4kB",
76+
"maximumError": "8kB"
8177
}
8278
],
8379
"outputHashing": "all"
@@ -91,7 +87,7 @@
9187
"defaultConfiguration": "production"
9288
},
9389
"serve": {
94-
"builder": "@angular-devkit/build-angular:dev-server",
90+
"builder": "@angular/build:dev-server",
9591
"configurations": {
9692
"production": {
9793
"buildTarget": "DevExtreme-app:build:production"
@@ -103,13 +99,10 @@
10399
"defaultConfiguration": "development"
104100
},
105101
"extract-i18n": {
106-
"builder": "@angular-devkit/build-angular:extract-i18n",
107-
"options": {
108-
"buildTarget": "DevExtreme-app:build"
109-
}
102+
"builder": "@angular/build:extract-i18n"
110103
},
111104
"test": {
112-
"builder": "@angular-devkit/build-angular:karma",
105+
"builder": "@angular/build:karma",
113106
"options": {
114107
"polyfills": [
115108
"zone.js",
@@ -118,19 +111,17 @@
118111
"tsConfig": "tsconfig.spec.json",
119112
"inlineStyleLanguage": "scss",
120113
"assets": [
121-
"src/favicon.ico",
122-
"src/assets"
114+
{
115+
"glob": "**/*",
116+
"input": "public"
117+
}
123118
],
124119
"styles": [
125120
"src/styles.scss"
126-
],
127-
"scripts": []
121+
]
128122
}
129123
}
130124
}
131125
}
132-
},
133-
"cli": {
134-
"analytics": false
135126
}
136127
}

0 commit comments

Comments
 (0)