Skip to content

Commit f877649

Browse files
committed
Upgrades
1 parent f65924d commit f877649

File tree

8 files changed

+2263
-2085
lines changed

8 files changed

+2263
-2085
lines changed

app/package.json

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -17,46 +17,45 @@
1717
"node": "20",
1818
"pnpm": "10"
1919
},
20-
"packageManager": "pnpm@10.4.1",
20+
"packageManager": "pnpm@10.5.2",
2121
"private": true,
2222
"dependencies": {
23-
"@angular/animations": "^19.1.7",
24-
"@angular/cdk": "19.1.5",
25-
"@angular/common": "^19.1.7",
26-
"@angular/compiler": "^19.1.7",
27-
"@angular/core": "^19.1.7",
28-
"@angular/forms": "^19.1.7",
29-
"@angular/material": "19.1.5",
30-
"@angular/platform-browser": "^19.1.7",
31-
"@angular/platform-browser-dynamic": "^19.1.7",
32-
"@angular/platform-server": "^19.1.7",
33-
"@angular/router": "^19.1.7",
34-
"@angular/service-worker": "^19.1.7",
35-
"@angular/ssr": "^19.1.8",
23+
"@angular/cdk": "19.2.1",
24+
"@angular/common": "^19.2.0",
25+
"@angular/compiler": "^19.2.0",
26+
"@angular/core": "^19.2.0",
27+
"@angular/forms": "^19.2.0",
28+
"@angular/material": "19.2.1",
29+
"@angular/platform-browser": "^19.2.0",
30+
"@angular/platform-browser-dynamic": "^19.2.0",
31+
"@angular/platform-server": "^19.2.0",
32+
"@angular/router": "^19.2.0",
33+
"@angular/service-worker": "^19.2.0",
34+
"@angular/ssr": "^19.2.0",
3635
"@ngrx/operators": "^19.0.1",
3736
"@ngrx/signals": "^19.0.1",
3837
"consola": "^3.4.0",
3938
"express": "^4.21.2",
40-
"firebase": "^11.3.1",
39+
"firebase": "^11.4.0",
4140
"ngxtension": "^4.3.2",
4241
"rxfire": "^6.1.0",
4342
"rxjs": "~7.8.2",
4443
"tslib": "^2.8.1",
45-
"type-fest": "^4.35.0",
44+
"type-fest": "^4.36.0",
4645
"zone.js": "~0.15.0"
4746
},
4847
"devDependencies": {
49-
"@angular-devkit/build-angular": "^19.1.8",
50-
"@angular/cli": "^19.1.8",
51-
"@angular/compiler-cli": "^19.1.7",
48+
"@angular-devkit/build-angular": "^19.2.0",
49+
"@angular/cli": "^19.2.0",
50+
"@angular/compiler-cli": "^19.2.0",
5251
"@ngrx/eslint-plugin": "^19.0.1",
53-
"@tailwindcss/postcss": "^4.0.8",
52+
"@tailwindcss/postcss": "^4.0.9",
5453
"@types/express": "^5.0.0",
5554
"@types/jasmine": "~5.1.7",
56-
"@types/node": "^22.13.5",
57-
"angular-eslint": "^19.1.0",
55+
"@types/node": "^22.13.8",
56+
"angular-eslint": "^19.2.0",
5857
"eslint": "^9.21.0",
59-
"eslint-config-prettier": "^10.0.1",
58+
"eslint-config-prettier": "^10.0.2",
6059
"jasmine-core": "~5.6.0",
6160
"karma": "~6.4.4",
6261
"karma-chrome-launcher": "~3.2.0",
@@ -65,20 +64,21 @@
6564
"karma-jasmine-html-reporter": "~2.1.0",
6665
"ng-mocks": "^14.13.2",
6766
"postcss": "^8.5.3",
68-
"prettier": "^3.5.2",
67+
"prettier": "^3.5.3",
6968
"prettier-plugin-tailwindcss": "^0.6.11",
70-
"tailwindcss": "^4.0.8",
71-
"typescript": "~5.7.3",
72-
"typescript-eslint": "^8.24.1"
69+
"tailwindcss": "^4.0.9",
70+
"typescript": "~5.8.2",
71+
"typescript-eslint": "^8.26.0"
7372
},
7473
"pnpm": {
7574
"onlyBuiltDependencies": [
76-
"protobufjs",
77-
"nx",
75+
"@firebase/util",
7876
"@parcel/watcher",
7977
"esbuild",
78+
"lmdb",
8079
"msgpackr-extract",
81-
"lmdb"
80+
"nx",
81+
"protobufjs"
8282
]
8383
}
8484
}

app/pnpm-lock.yaml

Lines changed: 1563 additions & 1387 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/app/app.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ApplicationConfig, isDevMode, provideZoneChangeDetection } from '@angular/core';
22
import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field';
33
import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
4-
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
54
import { provideRouter, withComponentInputBinding, withRouterConfig } from '@angular/router';
65
import { provideServiceWorker } from '@angular/service-worker';
76
import { routes } from './app.routes';
@@ -15,7 +14,6 @@ export const appConfig: ApplicationConfig = {
1514
withRouterConfig({ paramsInheritanceStrategy: 'always' }),
1615
),
1716
provideClientHydration(withEventReplay()),
18-
provideAnimationsAsync(),
1917
provideServiceWorker('ngsw-worker.js', {
2018
enabled: !isDevMode(),
2119
registrationStrategy: 'registerWhenStable:30000',

app/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"compileOnSave": false,
55
"compilerOptions": {
66
"outDir": "./dist/out-tsc",
7+
"erasableSyntaxOnly": true,
78
"forceConsistentCasingInFileNames": true,
89
"strict": true,
910
"noImplicitOverride": true,

firebase/common/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4+
"erasableSyntaxOnly": true,
45
"forceConsistentCasingInFileNames": true,
56
"strict": true,
67
"noImplicitOverride": true,

firebase/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"node": "20",
1919
"pnpm": "10"
2020
},
21-
"packageManager": "pnpm@10.4.1",
21+
"packageManager": "pnpm@10.5.2",
2222
"main": "functions/lib/index.js",
2323
"dependencies": {
2424
"@google-cloud/functions-framework": "^3.4.5",
@@ -29,19 +29,20 @@
2929
"devDependencies": {
3030
"@firebase/rules-unit-testing": "^4.0.1",
3131
"eslint": "^9.21.0",
32-
"eslint-config-prettier": "^10.0.1",
32+
"eslint-config-prettier": "^10.0.2",
3333
"firebase-functions-test": "^3.4.0",
34-
"firebase-tools": "^13.31.2",
34+
"firebase-tools": "^13.32.0",
3535
"globals": "^16.0.0",
3636
"npm-run-all": "^4.1.5",
37-
"prettier": "^3.5.2",
38-
"typescript": "~5.7.3",
39-
"typescript-eslint": "^8.24.1",
40-
"vitest": "^3.0.6"
37+
"prettier": "^3.5.3",
38+
"typescript": "~5.8.2",
39+
"typescript-eslint": "^8.26.0",
40+
"vitest": "^3.0.7"
4141
},
4242
"private": true,
4343
"pnpm": {
4444
"onlyBuiltDependencies": [
45+
"@firebase/util",
4546
"esbuild",
4647
"protobufjs",
4748
"re2"

0 commit comments

Comments
 (0)