Skip to content

Angular v19 upgrades and more #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> [!CAUTION]
>
> **Note for future Jits:** you put this particular part of the tech stack on ice in Feb 2025 ([ref](https://www.notion.so/jits/2025-On-Ice-18a2a607a9ea805090c3de552b57f19d?pvs=4)). You _did_ complete the migration to Angular v19 etc. ([ref](https://www.notion.so/jits/Angular-v19-etc-upgrades-1272a607a9ea80d48ca1e57c291a4836?pvs=4)) but didn't update the docs (because, why bother?). Just bear this mind if you ever resurrect this repo.

# The [FullStacksDev](https://fullstacks.dev) Angular and Firebase simple example app

Part of the curated [**FullStacksDev Angular and Firebase tech stack**](https://fullstacks.dev/#angular-and-firebase). For solo devs and very small teams.
Expand Down
5 changes: 5 additions & 0 deletions app/.postcssrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"plugins": {
"@tailwindcss/postcss": {}
}
}
3 changes: 2 additions & 1 deletion app/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"routesFile": "prerendered-routes.txt"
},
"ssr": {
"entry": "server.ts"
"entry": "src/server.ts"
}
},
"configurations": {
Expand Down Expand Up @@ -119,6 +119,7 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"builderMode": "application",
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
Expand Down
1 change: 1 addition & 0 deletions app/ngsw-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.csr.html",
"applicationMaxAge": "30d",
"assetGroups": [
{
"name": "app",
Expand Down
95 changes: 53 additions & 42 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,59 +15,70 @@
},
"engines": {
"node": "20",
"pnpm": "9"
"pnpm": "10"
},
"packageManager": "pnpm@10.2.1",
"private": true,
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/cdk": "18.2.13",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/material": "18.2.13",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/platform-server": "^18.2.12",
"@angular/router": "^18.2.12",
"@angular/service-worker": "^18.2.12",
"@angular/ssr": "^18.2.12",
"@ngrx/operators": "^18.1.1",
"@ngrx/signals": "^18.1.1",
"consola": "^3.2.3",
"express": "^4.21.1",
"firebase": "^11.0.2",
"ngxtension": "^4.1.0",
"rxfire": "^6.0.6-canary.5cfad21",
"@angular/animations": "^19.1.5",
"@angular/cdk": "19.1.3",
"@angular/common": "^19.1.5",
"@angular/compiler": "^19.1.5",
"@angular/core": "^19.1.5",
"@angular/forms": "^19.1.5",
"@angular/material": "19.1.3",
"@angular/platform-browser": "^19.1.5",
"@angular/platform-browser-dynamic": "^19.1.5",
"@angular/platform-server": "^19.1.5",
"@angular/router": "^19.1.5",
"@angular/service-worker": "^19.1.5",
"@angular/ssr": "^19.1.6",
"@ngrx/operators": "^19.0.1",
"@ngrx/signals": "^19.0.1",
"consola": "^3.4.0",
"express": "^4.21.2",
"firebase": "^11.3.0",
"ngxtension": "^4.3.2",
"rxfire": "^6.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.8.1",
"type-fest": "^4.27.0",
"zone.js": "~0.14.10"
"type-fest": "^4.33.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@ngrx/eslint-plugin": "^18.1.1",
"@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0",
"@types/node": "^22.9.0",
"angular-eslint": "^18.4.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"jasmine-core": "~5.4.0",
"@angular-devkit/build-angular": "^19.1.6",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.5",
"@ngrx/eslint-plugin": "^19.0.1",
"@tailwindcss/postcss": "^4.0.0",
"@types/express": "^5.0.0",
"@types/jasmine": "~5.1.5",
"@types/node": "^22.13.1",
"angular-eslint": "^19.0.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-mocks": "^14.13.1",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.15",
"typescript": "~5.5.4",
"typescript-eslint": "^8.15.0"
"ng-mocks": "^14.13.2",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.23.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"protobufjs",
"nx",
"@parcel/watcher",
"esbuild",
"msgpackr-extract",
"lmdb"
]
}
}
Loading