Skip to content

Commit 3bbf88f

Browse files
authored
chore: update finance portfolio demo versions
1 parent 450e1c1 commit 3bbf88f

Some content is hidden

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

48 files changed

+8053
-8881
lines changed

examples-standalone/coffee-warehouse/angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"builder": "@angular-devkit/build-angular:application",
2323
"options": {
2424
"allowedCommonJsDependencies": [
25-
"hammerjs",
2625
"@progress/kendo-angular-intl/locales/en/all",
2726
"@progress/kendo-angular-intl/locales/es/all",
2827
"@progress/kendo-angular-intl/locales/fr/all"

examples-standalone/coffee-warehouse/src/app/app.module.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ const drawerRoutes = [
4141
{ path: 'info', component: InfoComponent }
4242
];
4343

44-
import 'hammerjs';
45-
4644
import '@progress/kendo-angular-intl/locales/en/all';
4745
import '@progress/kendo-angular-intl/locales/es/all';
4846
import '@progress/kendo-angular-intl/locales/fr/all';

examples-standalone/electron-dashboard/src/app/detail/detail.module.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ import { ChartsModule } from '@progress/kendo-angular-charts';
99
import { IntlModule } from "@progress/kendo-angular-intl";
1010

1111

12-
import 'hammerjs';
13-
14-
1512
@NgModule({
1613
declarations: [DetailComponent],
1714
imports: [CommonModule, SharedModule, ChartsModule,IntlModule, DetailRoutingModule]

examples-standalone/finance-portfolio/angular.json

Lines changed: 41 additions & 11 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/finance-portfolio",
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,17 +31,20 @@
3031
"src/assets"
3132
],
3233
"styles": [
33-
"src/styles/_main.scss"
34+
"src/styles.scss"
3435
],
35-
"scripts": [ ]
36+
"scripts": [
37+
"node_modules/jquery/dist/jquery.min.js",
38+
"node_modules/@progress/kendo-ui/umd/kendo.all.min.js"
39+
]
3640
},
3741
"configurations": {
3842
"production": {
3943
"budgets": [
4044
{
4145
"type": "initial",
42-
"maximumWarning": "10mb",
43-
"maximumError": "10mb"
46+
"maximumWarning": "14mb",
47+
"maximumError": "12mb"
4448
},
4549
{
4650
"type": "anyComponentStyle",
@@ -59,7 +63,7 @@
5963
"defaultConfiguration": "production"
6064
},
6165
"serve": {
62-
"builder": "@angular-devkit/build-angular:dev-server",
66+
"builder": "@angular/build:dev-server",
6367
"configurations": {
6468
"production": {
6569
"buildTarget": "finance-portfolio:build:production"
@@ -71,13 +75,13 @@
7175
"defaultConfiguration": "development"
7276
},
7377
"extract-i18n": {
74-
"builder": "@angular-devkit/build-angular:extract-i18n",
78+
"builder": "@angular/build:extract-i18n",
7579
"options": {
7680
"buildTarget": "finance-portfolio:build"
7781
}
7882
},
7983
"test": {
80-
"builder": "@angular-devkit/build-angular:karma",
84+
"builder": "@angular/build:karma",
8185
"options": {
8286
"polyfills": [
8387
"zone.js",
@@ -90,12 +94,38 @@
9094
"src/assets"
9195
],
9296
"styles": [
93-
"src/styles/_main.scss"
97+
"src/styles.scss"
9498
],
9599
"scripts": []
96100
}
97101
}
98102
}
99103
}
104+
},
105+
"schematics": {
106+
"@schematics/angular:component": {
107+
"type": "component"
108+
},
109+
"@schematics/angular:directive": {
110+
"type": "directive"
111+
},
112+
"@schematics/angular:service": {
113+
"type": "service"
114+
},
115+
"@schematics/angular:guard": {
116+
"typeSeparator": "."
117+
},
118+
"@schematics/angular:interceptor": {
119+
"typeSeparator": "."
120+
},
121+
"@schematics/angular:module": {
122+
"typeSeparator": "."
123+
},
124+
"@schematics/angular:pipe": {
125+
"typeSeparator": "."
126+
},
127+
"@schematics/angular:resolver": {
128+
"typeSeparator": "."
129+
}
100130
}
101-
}
131+
}

0 commit comments

Comments
 (0)