Skip to content

Commit aea58a4

Browse files
authored
Merge pull request #16 from FullStacksDev/upgrades
Upgrades
2 parents 112c7a4 + 43f1d02 commit aea58a4

13 files changed

+3262
-3132
lines changed

app/package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -19,55 +19,55 @@
1919
},
2020
"private": true,
2121
"dependencies": {
22-
"@angular/animations": "^18.2.2",
23-
"@angular/cdk": "18.2.2",
24-
"@angular/common": "^18.2.2",
25-
"@angular/compiler": "^18.2.2",
26-
"@angular/core": "^18.2.2",
27-
"@angular/forms": "^18.2.2",
28-
"@angular/material": "18.2.2",
29-
"@angular/platform-browser": "^18.2.2",
30-
"@angular/platform-browser-dynamic": "^18.2.2",
31-
"@angular/platform-server": "^18.2.2",
32-
"@angular/router": "^18.2.2",
33-
"@angular/service-worker": "^18.2.2",
34-
"@angular/ssr": "^18.2.2",
35-
"@ngrx/operators": "^18.0.2",
36-
"@ngrx/signals": "^18.0.2",
22+
"@angular/animations": "^18.2.8",
23+
"@angular/cdk": "18.2.9",
24+
"@angular/common": "^18.2.8",
25+
"@angular/compiler": "^18.2.8",
26+
"@angular/core": "^18.2.8",
27+
"@angular/forms": "^18.2.8",
28+
"@angular/material": "18.2.9",
29+
"@angular/platform-browser": "^18.2.8",
30+
"@angular/platform-browser-dynamic": "^18.2.8",
31+
"@angular/platform-server": "^18.2.8",
32+
"@angular/router": "^18.2.8",
33+
"@angular/service-worker": "^18.2.8",
34+
"@angular/ssr": "^18.2.9",
35+
"@ngrx/operators": "^18.1.0",
36+
"@ngrx/signals": "^18.1.0",
3737
"consola": "^3.2.3",
38-
"express": "^4.19.2",
39-
"firebase": "^10.13.1",
38+
"express": "^4.21.1",
39+
"firebase": "^11.0.0",
4040
"ngxtension": "^4.0.0",
4141
"rxfire": "^6.0.6-canary.5cfad21",
4242
"rxjs": "~7.8.0",
43-
"tslib": "^2.7.0",
44-
"type-fest": "^4.26.0",
43+
"tslib": "^2.8.0",
44+
"type-fest": "^4.26.1",
4545
"zone.js": "~0.14.10"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/build-angular": "^18.2.2",
49-
"@angular/cli": "^18.2.2",
50-
"@angular/compiler-cli": "^18.2.2",
51-
"@ngrx/eslint-plugin": "^18.0.2",
48+
"@angular-devkit/build-angular": "^18.2.9",
49+
"@angular/cli": "^18.2.9",
50+
"@angular/compiler-cli": "^18.2.8",
51+
"@ngrx/eslint-plugin": "^18.1.0",
5252
"@types/express": "^4.17.17",
5353
"@types/jasmine": "~5.1.0",
54-
"@types/node": "^22.5.2",
55-
"angular-eslint": "^18.3.0",
54+
"@types/node": "^22.7.8",
55+
"angular-eslint": "^18.4.0",
5656
"autoprefixer": "^10.4.20",
57-
"eslint": "^9.9.1",
57+
"eslint": "^9.13.0",
5858
"eslint-config-prettier": "^9.1.0",
59-
"jasmine-core": "~5.2.0",
59+
"jasmine-core": "~5.4.0",
6060
"karma": "~6.4.4",
6161
"karma-chrome-launcher": "~3.2.0",
6262
"karma-coverage": "~2.2.0",
6363
"karma-jasmine": "~5.1.0",
6464
"karma-jasmine-html-reporter": "~2.1.0",
6565
"ng-mocks": "^14.13.1",
66-
"postcss": "^8.4.44",
66+
"postcss": "^8.4.47",
6767
"prettier": "^3.3.3",
68-
"prettier-plugin-tailwindcss": "^0.6.6",
69-
"tailwindcss": "^3.4.10",
68+
"prettier-plugin-tailwindcss": "^0.6.8",
69+
"tailwindcss": "^3.4.14",
7070
"typescript": "~5.5.4",
71-
"typescript-eslint": "^8.3.0"
71+
"typescript-eslint": "^8.11.0"
7272
}
7373
}

app/pnpm-lock.yaml

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

app/src/app/logbook/data/config.store.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { ConfigStore } from './config.store';
55
import { ConfigService } from './db/config.service';
66

77
describe('ConfigStore', () => {
8+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
9+
// eslint-disable-next-line @typescript-eslint/no-deprecated
810
MockInstance.scope();
911

1012
beforeEach(() => MockBuilder(ConfigStore, null).mock(ConfigService));

app/src/app/logbook/data/entries-update.store.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { EntriesService } from './db/entries.service';
44
import { EntriesUpdateStore } from './entries-update.store';
55

66
describe('EntriesUpdateStore', () => {
7+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
8+
// eslint-disable-next-line @typescript-eslint/no-deprecated
79
MockInstance.scope();
810

911
beforeEach(() => MockBuilder(EntriesUpdateStore, null).mock(AuthStore).mock(EntriesService));

app/src/app/logbook/data/entries.store.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { EntriesService } from './db/entries.service';
55
import { EntriesStore } from './entries.store';
66

77
describe('EntriesStore', () => {
8+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
9+
// eslint-disable-next-line @typescript-eslint/no-deprecated
810
MockInstance.scope();
911

1012
beforeEach(() => MockBuilder(EntriesStore, null).mock(AuthStore).mock(EntriesService));

app/src/app/logbook/feature/entry-item.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ class TestComponent {
1717
}
1818

1919
describe('EntryItemComponent', () => {
20+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
21+
// eslint-disable-next-line @typescript-eslint/no-deprecated
2022
MockInstance.scope();
2123

2224
beforeEach(() =>

app/src/app/logbook/feature/logbook-page.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import { EntriesStore } from '../data/entries.store';
77
import { LogbookPageComponent } from './logbook-page.component';
88

99
describe('LogbookPageComponent', () => {
10+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
11+
// eslint-disable-next-line @typescript-eslint/no-deprecated
1012
MockInstance.scope();
1113

1214
beforeEach(() =>

app/src/app/logbook/feature/new-entry-panel.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { EntriesUpdateStore } from '../data/entries-update.store';
44
import { NewEntryPanelComponent } from './new-entry-panel.component';
55

66
describe('NewEntryPanelComponent', () => {
7+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
8+
// eslint-disable-next-line @typescript-eslint/no-deprecated
79
MockInstance.scope();
810

911
beforeEach(() => MockBuilder(NewEntryPanelComponent, [EntriesUpdateStore]));

app/src/app/login/feature/login-flow.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { LoginFlowComponent } from './login-flow.component';
55
import { LoginFlowStore } from './login-flow.store';
66

77
describe('LoginFlowComponent', () => {
8+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
9+
// eslint-disable-next-line @typescript-eslint/no-deprecated
810
MockInstance.scope();
911

1012
beforeEach(() => MockBuilder(LoginFlowComponent, null).mock(LoginFlowStore));

app/src/app/shared/auth/data/auth.store.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { AuthService } from './auth.service';
44
import { AuthStore } from './auth.store';
55

66
describe('AuthStore', () => {
7+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
8+
// eslint-disable-next-line @typescript-eslint/no-deprecated
79
MockInstance.scope();
810

911
beforeEach(() => MockBuilder(AuthStore, null).mock(AuthService));

app/src/app/website/ui/auth-status.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { MockBuilder, MockInstance, MockRender, ngMocks } from 'ng-mocks';
55
import { AuthStatusComponent } from './auth-status.component';
66

77
describe('AuthStatusComponent', () => {
8+
// See: https://github.com/help-me-mom/ng-mocks/issues/10217
9+
// eslint-disable-next-line @typescript-eslint/no-deprecated
810
MockInstance.scope();
911

1012
beforeEach(() => MockBuilder(AuthStatusComponent, null).mock(AuthStore).mock(LogoutService));

firebase/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@
2121
"main": "functions/lib/index.js",
2222
"dependencies": {
2323
"@google-cloud/functions-framework": "^3.4.2",
24-
"firebase-admin": "^12.4.0",
25-
"firebase-functions": "^5.1.1",
24+
"firebase-admin": "^12.6.0",
25+
"firebase-functions": "^6.0.1",
2626
"ufo": "^1.5.4"
2727
},
2828
"devDependencies": {
29-
"@firebase/rules-unit-testing": "^3.0.4",
30-
"eslint": "^9.9.1",
29+
"@firebase/rules-unit-testing": "^4.0.0",
30+
"eslint": "^9.13.0",
3131
"eslint-config-prettier": "^9.1.0",
3232
"firebase-functions-test": "^3.2.0",
33-
"firebase-tools": "^13.16.0",
34-
"globals": "^15.9.0",
33+
"firebase-tools": "^13.22.1",
34+
"globals": "^15.11.0",
3535
"npm-run-all": "^4.1.5",
3636
"prettier": "^3.3.3",
3737
"typescript": "~5.5.4",
38-
"typescript-eslint": "^8.3.0",
39-
"vitest": "^2.0.5"
38+
"typescript-eslint": "^8.11.0",
39+
"vitest": "^2.1.3"
4040
},
4141
"private": true
4242
}

0 commit comments

Comments
 (0)