Skip to content

Commit 0c85639

Browse files
authored
feat!: Upgrade to Angular 18 and Material 18 (#197)
1 parent da5be2d commit 0c85639

File tree

5 files changed

+4139
-1422
lines changed

5 files changed

+4139
-1422
lines changed

angular.json

+16-15
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@
1515
},
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular-devkit/build-angular:application",
1919
"options": {
20-
"outputPath": "dist/ngx-multi-sort-table",
20+
"outputPath": {
21+
"base": "dist/ngx-multi-sort-table",
22+
"browser": ""
23+
},
2124
"index": "src/index.html",
22-
"main": "src/main.ts",
23-
"polyfills": "src/polyfills.ts",
25+
"polyfills": [
26+
"src/polyfills.ts"
27+
],
2428
"tsConfig": "src/tsconfig.app.json",
2529
"assets": [
2630
"src/favicon.ico",
@@ -31,12 +35,11 @@
3135
"src/styles.scss"
3236
],
3337
"scripts": [],
34-
"vendorChunk": true,
3538
"extractLicenses": false,
36-
"buildOptimizer": false,
3739
"sourceMap": true,
3840
"optimization": false,
39-
"namedChunks": true
41+
"namedChunks": true,
42+
"browser": "src/main.ts"
4043
},
4144
"configurations": {
4245
"production": {
@@ -51,8 +54,6 @@
5154
"sourceMap": false,
5255
"namedChunks": false,
5356
"extractLicenses": true,
54-
"vendorChunk": false,
55-
"buildOptimizer": true,
5657
"budgets": [
5758
{
5859
"type": "initial",
@@ -196,11 +197,12 @@
196197
"prefix": "app",
197198
"architect": {
198199
"build": {
199-
"builder": "@angular-devkit/build-angular:browser",
200+
"builder": "@angular-devkit/build-angular:application",
200201
"options": {
201-
"outputPath": "dist/demo",
202+
"outputPath": {
203+
"base": "dist/demo"
204+
},
202205
"index": "projects/demo/src/index.html",
203-
"main": "projects/demo/src/main.ts",
204206
"polyfills": [
205207
"zone.js"
206208
],
@@ -213,7 +215,8 @@
213215
"styles": [
214216
"projects/demo/src/styles.scss"
215217
],
216-
"scripts": []
218+
"scripts": [],
219+
"browser": "projects/demo/src/main.ts"
217220
},
218221
"configurations": {
219222
"production": {
@@ -232,9 +235,7 @@
232235
"outputHashing": "all"
233236
},
234237
"development": {
235-
"buildOptimizer": false,
236238
"optimization": false,
237-
"vendorChunk": true,
238239
"extractLicenses": false,
239240
"sourceMap": true,
240241
"namedChunks": true

0 commit comments

Comments
 (0)