Skip to content

Commit 82c8cae

Browse files
authored
chore: update grid chart integration demo versions
1 parent 820e2ce commit 82c8cae

30 files changed

+7381
-8884
lines changed

examples-standalone/grid-charts-integration/angular.json

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:application",
18+
"builder": "@angular/build:application",
1919
"options": {
2020
"outputPath": "dist/grid-charts-integration",
2121
"index": "src/index.html",
2222
"browser": "src/main.ts",
2323
"polyfills": [
24-
"zone.js"
24+
"zone.js",
25+
"@angular/localize/init"
2526
],
2627
"tsConfig": "tsconfig.app.json",
2728
"inlineStyleLanguage": "scss",
@@ -30,6 +31,7 @@
3031
"src/assets"
3132
],
3233
"styles": [
34+
"node_modules/bootstrap/dist/css/bootstrap.min.css",
3335
"src/styles/_main.scss"
3436
],
3537
"scripts": []
@@ -39,8 +41,8 @@
3941
"budgets": [
4042
{
4143
"type": "initial",
42-
"maximumWarning": "500kb",
43-
"maximumError": "4mb"
44+
"maximumWarning": "6mb",
45+
"maximumError": "7mb"
4446
},
4547
{
4648
"type": "anyComponentStyle",
@@ -59,7 +61,7 @@
5961
"defaultConfiguration": "production"
6062
},
6163
"serve": {
62-
"builder": "@angular-devkit/build-angular:dev-server",
64+
"builder": "@angular/build:dev-server",
6365
"configurations": {
6466
"production": {
6567
"buildTarget": "grid-charts-integration:build:production"
@@ -71,17 +73,18 @@
7173
"defaultConfiguration": "development"
7274
},
7375
"extract-i18n": {
74-
"builder": "@angular-devkit/build-angular:extract-i18n",
76+
"builder": "@angular/build:extract-i18n",
7577
"options": {
7678
"buildTarget": "grid-charts-integration:build"
7779
}
7880
},
7981
"test": {
80-
"builder": "@angular-devkit/build-angular:karma",
82+
"builder": "@angular/build:karma",
8183
"options": {
8284
"polyfills": [
8385
"zone.js",
84-
"zone.js/testing"
86+
"zone.js/testing",
87+
"@angular/localize/init"
8588
],
8689
"tsConfig": "tsconfig.spec.json",
8790
"inlineStyleLanguage": "scss",
@@ -97,5 +100,31 @@
97100
}
98101
}
99102
}
103+
},
104+
"schematics": {
105+
"@schematics/angular:component": {
106+
"type": "component"
107+
},
108+
"@schematics/angular:directive": {
109+
"type": "directive"
110+
},
111+
"@schematics/angular:service": {
112+
"type": "service"
113+
},
114+
"@schematics/angular:guard": {
115+
"typeSeparator": "."
116+
},
117+
"@schematics/angular:interceptor": {
118+
"typeSeparator": "."
119+
},
120+
"@schematics/angular:module": {
121+
"typeSeparator": "."
122+
},
123+
"@schematics/angular:pipe": {
124+
"typeSeparator": "."
125+
},
126+
"@schematics/angular:resolver": {
127+
"typeSeparator": "."
128+
}
100129
}
101130
}

0 commit comments

Comments
 (0)