Skip to content

Commit 78150d0

Browse files
committed
chore(*): ng update @angular/core@18 @angular/cli@18
1 parent 774c928 commit 78150d0

File tree

18 files changed

+5201
-4385
lines changed

18 files changed

+5201
-4385
lines changed

angular.json

+24-26
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@
1010
"prefix": "app",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-angular:browser",
13+
"builder": "@angular-devkit/build-angular:application",
1414
"options": {
15-
"outputPath": "dist/app",
15+
"outputPath": {
16+
"base": "dist/app"
17+
},
1618
"index": "src/index.html",
17-
"main": "src/main.ts",
1819
"tsConfig": "src/tsconfig.app.json",
1920
"polyfills": [
2021
"zone.js",
@@ -28,16 +29,15 @@
2829
"src/styles.scss"
2930
],
3031
"scripts": [],
31-
"vendorChunk": true,
3232
"extractLicenses": false,
33-
"buildOptimizer": false,
3433
"optimization": false,
3534
"namedChunks": true,
3635
"sourceMap": true,
3736
"progress": true,
3837
"stylePreprocessorOptions": {
3938
"includePaths": ["node_modules"]
40-
}
39+
},
40+
"browser": "src/main.ts"
4141
},
4242
"configurations": {
4343
"production": {
@@ -51,8 +51,6 @@
5151
"outputHashing": "all",
5252
"namedChunks": false,
5353
"extractLicenses": true,
54-
"vendorChunk": false,
55-
"buildOptimizer": true,
5654
"sourceMap": false,
5755
"fileReplacements": [
5856
{
@@ -125,12 +123,15 @@
125123
"prefix": "app",
126124
"architect": {
127125
"build": {
128-
"builder": "@angular-devkit/build-angular:browser",
126+
"builder": "@angular-devkit/build-angular:application",
129127
"options": {
130-
"outputPath": "dist/app-lob",
128+
"outputPath": {
129+
"base": "dist/app-lob"
130+
},
131131
"index": "projects/app-lob/src/index.html",
132-
"main": "projects/app-lob/src/main.ts",
133-
"polyfills": "projects/app-lob/src/polyfills.ts",
132+
"polyfills": [
133+
"projects/app-lob/src/polyfills.ts"
134+
],
134135
"tsConfig": "projects/app-lob/tsconfig.app.json",
135136
"assets": [
136137
"projects/app-lob/src/favicon.ico",
@@ -140,9 +141,7 @@
140141
"projects/app-lob/src/styles.scss"
141142
],
142143
"scripts": [],
143-
"vendorChunk": true,
144144
"extractLicenses": false,
145-
"buildOptimizer": false,
146145
"sourceMap": {
147146
"scripts": true,
148147
"styles": true,
@@ -155,7 +154,8 @@
155154
"stylePreprocessorOptions": {
156155
"includePaths": ["node_modules"]
157156
},
158-
"preserveSymlinks": true
157+
"preserveSymlinks": true,
158+
"browser": "projects/app-lob/src/main.ts"
159159
},
160160
"configurations": {
161161
"production": {
@@ -170,8 +170,6 @@
170170
"sourceMap": false,
171171
"namedChunks": false,
172172
"extractLicenses": true,
173-
"vendorChunk": false,
174-
"buildOptimizer": true,
175173
"budgets": [
176174
{
177175
"type": "initial",
@@ -249,12 +247,15 @@
249247
"prefix": "app",
250248
"architect": {
251249
"build": {
252-
"builder": "@angular-devkit/build-angular:browser",
250+
"builder": "@angular-devkit/build-angular:application",
253251
"options": {
254-
"outputPath": "dist/app-crm",
252+
"outputPath": {
253+
"base": "dist/app-crm"
254+
},
255255
"index": "projects/app-crm/src/index.html",
256-
"main": "projects/app-crm/src/main.ts",
257-
"polyfills": "projects/app-crm/src/polyfills.ts",
256+
"polyfills": [
257+
"projects/app-crm/src/polyfills.ts"
258+
],
258259
"tsConfig": "projects/app-crm/tsconfig.app.json",
259260
"assets": [
260261
"projects/app-crm/src/favicon.ico",
@@ -264,9 +265,7 @@
264265
"projects/app-crm/src/styles.scss"
265266
],
266267
"scripts": [],
267-
"vendorChunk": true,
268268
"extractLicenses": false,
269-
"buildOptimizer": false,
270269
"sourceMap": {
271270
"scripts": true,
272271
"styles": true,
@@ -278,7 +277,8 @@
278277
"namedChunks": true,
279278
"stylePreprocessorOptions": {
280279
"includePaths": ["node_modules"]
281-
}
280+
},
281+
"browser": "projects/app-crm/src/main.ts"
282282
},
283283
"configurations": {
284284
"production": {
@@ -293,8 +293,6 @@
293293
"sourceMap": false,
294294
"namedChunks": false,
295295
"extractLicenses": true,
296-
"vendorChunk": false,
297-
"buildOptimizer": true,
298296
"budgets": [
299297
{
300298
"type": "initial",

0 commit comments

Comments
 (0)