updated angular core

This commit is contained in:
2026-04-30 11:14:24 +02:00
parent 35b428cef0
commit af09103b8e
4 changed files with 2354 additions and 2037 deletions
+2335 -2017
View File
File diff suppressed because it is too large Load Diff
+14 -14
View File
@@ -13,19 +13,19 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^20.0.2", "@angular/animations": "^21.2.11",
"@angular/cdk": "^20.0.2", "@angular/cdk": "^20.0.2",
"@angular/cli": "^20.3.18", "@angular/cli": "^21.2.9",
"@angular/common": "^20.3.14", "@angular/common": "^21.2.11",
"@angular/compiler": "^20.3.16", "@angular/compiler": "^21.2.11",
"@angular/core": "^20.3.17", "@angular/core": "^21.2.11",
"@angular/forms": "^20.0.2", "@angular/forms": "^21.2.11",
"@angular/material": "^20.0.2", "@angular/material": "^20.0.2",
"@angular/material-luxon-adapter": "^20.0.2", "@angular/material-luxon-adapter": "^20.0.2",
"@angular/platform-browser": "^20.0.2", "@angular/platform-browser": "^21.2.11",
"@angular/platform-browser-dynamic": "^20.0.2", "@angular/platform-browser-dynamic": "^21.2.11",
"@angular/router": "^20.0.2", "@angular/router": "^21.2.11",
"@angular/service-worker": "^20.0.2", "@angular/service-worker": "^21.2.11",
"luxon": "^3.6.1", "luxon": "^3.6.1",
"marked": "^12.0.1", "marked": "^12.0.1",
"rxjs": "~7.5.0", "rxjs": "~7.5.0",
@@ -34,9 +34,9 @@
"zone.js": "~0.15.1" "zone.js": "~0.15.1"
}, },
"devDependencies": { "devDependencies": {
"@angular/build": "^20.0.1", "@angular/build": "^21.2.9",
"@angular/compiler-cli": "^20.0.2", "@angular/compiler-cli": "^21.2.11",
"@angular/localize": "^20.0.2", "@angular/localize": "^21.2.11",
"@types/jasmine": "~4.3.0", "@types/jasmine": "~4.3.0",
"@types/luxon": "^3.6.2", "@types/luxon": "^3.6.2",
"@types/underscore": "^1.13.0", "@types/underscore": "^1.13.0",
@@ -49,7 +49,7 @@
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0", "karma-jasmine-html-reporter": "~2.0.0",
"prettier": "3.5.3", "prettier": "3.5.3",
"typescript": "~5.8.3", "typescript": "~5.9.3",
"typescript-eslint": "8.33.1" "typescript-eslint": "8.33.1"
} }
} }
+4 -1
View File
@@ -1,10 +1,13 @@
import { provideZoneChangeDetection } from '@angular/core'
import { platformBrowser } from '@angular/platform-browser' import { platformBrowser } from '@angular/platform-browser'
import { AppModule } from './app/app.module' import { AppModule } from './app/app.module'
import { environment } from './environments/environment' import { environment } from './environments/environment'
platformBrowser() platformBrowser()
.bootstrapModule(AppModule) .bootstrapModule(AppModule, {
applicationProviders: [provideZoneChangeDetection()],
})
.then(() => { .then(() => {
if ('serviceWorker' in navigator && environment.production) { if ('serviceWorker' in navigator && environment.production) {
navigator.serviceWorker.register('./ngsw-worker.js') navigator.serviceWorker.register('./ngsw-worker.js')
+1 -5
View File
@@ -18,11 +18,7 @@
"importHelpers": true, "importHelpers": true,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "ES2022",
"useDefineForClassFields": false, "useDefineForClassFields": false
"lib": [
"ES2022",
"dom"
]
}, },
"angularCompilerOptions": { "angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false, "enableI18nLegacyMessageIdFormat": false,