Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f3be3ee

Browse files
committedDec 6, 2024·
feat(nx): upgrade nx 20 and angular 19
1 parent bdc6d9e commit f3be3ee

File tree

143 files changed

+13819
-14031
lines changed

Some content is hidden

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

143 files changed

+13819
-14031
lines changed
 

‎.eslintrc.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
{
77
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
88
"rules": {
9+
"@angular-eslint/no-host-metadata-property": "off",
910
"@nx/enforce-module-boundaries": [
1011
"error",
1112
{
@@ -18,12 +19,6 @@
1819
}
1920
]
2021
}
21-
],
22-
"@angular-eslint/no-host-metadata-property": [
23-
"error",
24-
{
25-
"allowStatic": true
26-
}
2722
]
2823
}
2924
},

‎apps/angular/1-projection/project.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"tags": [],
88
"targets": {
99
"build": {
10-
"executor": "@angular-devkit/build-angular:application",
10+
"executor": "@angular-devkit/build-angular:browser",
1111
"outputs": ["{options.outputPath}"],
1212
"options": {
1313
"outputPath": "dist/apps/angular/1-projection",
1414
"index": "apps/angular/1-projection/src/index.html",
15-
"browser": "apps/angular/1-projection/src/main.ts",
15+
"main": "apps/angular/1-projection/src/main.ts",
1616
"polyfills": ["apps/angular/1-projection/src/polyfills.ts"],
1717
"tsConfig": "apps/angular/1-projection/tsconfig.app.json",
1818
"inlineStyleLanguage": "scss",
@@ -41,7 +41,9 @@
4141
"outputHashing": "all"
4242
},
4343
"development": {
44+
"buildOptimizer": false,
4445
"optimization": false,
46+
"vendorChunk": true,
4547
"extractLicenses": false,
4648
"sourceMap": true,
4749
"namedChunks": true

0 commit comments

Comments
 (0)
Please sign in to comment.