|
15 | 15 | "prefix": "app", |
16 | 16 | "architect": { |
17 | 17 | "build": { |
18 | | - "builder": "@angular-devkit/build-angular:application", |
| 18 | + "builder": "@angular/build:application", |
19 | 19 | "options": { |
20 | 20 | "outputPath": "dist/grid-charts-integration", |
21 | 21 | "index": "src/index.html", |
22 | 22 | "browser": "src/main.ts", |
23 | 23 | "polyfills": [ |
24 | | - "zone.js" |
| 24 | + "zone.js", |
| 25 | + "@angular/localize/init" |
25 | 26 | ], |
26 | 27 | "tsConfig": "tsconfig.app.json", |
27 | 28 | "inlineStyleLanguage": "scss", |
|
30 | 31 | "src/assets" |
31 | 32 | ], |
32 | 33 | "styles": [ |
| 34 | + "node_modules/bootstrap/dist/css/bootstrap.min.css", |
33 | 35 | "src/styles/_main.scss" |
34 | 36 | ], |
35 | 37 | "scripts": [] |
|
39 | 41 | "budgets": [ |
40 | 42 | { |
41 | 43 | "type": "initial", |
42 | | - "maximumWarning": "500kb", |
43 | | - "maximumError": "4mb" |
| 44 | + "maximumWarning": "6mb", |
| 45 | + "maximumError": "7mb" |
44 | 46 | }, |
45 | 47 | { |
46 | 48 | "type": "anyComponentStyle", |
|
59 | 61 | "defaultConfiguration": "production" |
60 | 62 | }, |
61 | 63 | "serve": { |
62 | | - "builder": "@angular-devkit/build-angular:dev-server", |
| 64 | + "builder": "@angular/build:dev-server", |
63 | 65 | "configurations": { |
64 | 66 | "production": { |
65 | 67 | "buildTarget": "grid-charts-integration:build:production" |
|
71 | 73 | "defaultConfiguration": "development" |
72 | 74 | }, |
73 | 75 | "extract-i18n": { |
74 | | - "builder": "@angular-devkit/build-angular:extract-i18n", |
| 76 | + "builder": "@angular/build:extract-i18n", |
75 | 77 | "options": { |
76 | 78 | "buildTarget": "grid-charts-integration:build" |
77 | 79 | } |
78 | 80 | }, |
79 | 81 | "test": { |
80 | | - "builder": "@angular-devkit/build-angular:karma", |
| 82 | + "builder": "@angular/build:karma", |
81 | 83 | "options": { |
82 | 84 | "polyfills": [ |
83 | 85 | "zone.js", |
84 | | - "zone.js/testing" |
| 86 | + "zone.js/testing", |
| 87 | + "@angular/localize/init" |
85 | 88 | ], |
86 | 89 | "tsConfig": "tsconfig.spec.json", |
87 | 90 | "inlineStyleLanguage": "scss", |
|
97 | 100 | } |
98 | 101 | } |
99 | 102 | } |
| 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 | + } |
100 | 129 | } |
101 | 130 | } |
0 commit comments