Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,9 @@ firebase-export*
.secret.local

.angular
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md

# Temporary environment files (use templates)
apps/web/src/environments/environment.local.ts
apps/web/src/environments/environment.prod.ts
6 changes: 1 addition & 5 deletions apps/github-receiver/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/github-receiver/src",
"projectType": "application",
"tags": [
"firebase:function",
"firebase:name:github-receiver",
"firebase:dep:firebase-app"
],
"tags": ["firebase:function", "firebase:name:github-receiver", "firebase:dep:firebase-app"],
"targets": {
"build": {
"executor": "@nx/esbuild:esbuild",
Expand Down
3 changes: 2 additions & 1 deletion apps/web/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
"buildTarget": "web:build:development"
}
},
"defaultConfiguration": "development"
"defaultConfiguration": "development",
"continuous": true
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const appConfig: ApplicationConfig = {
withViewTransitions({
onViewTransitionCreated: ({ transition }) => {
const router = inject(Router);
const targetUrl = router.getCurrentNavigation()!.finalUrl!;
const targetUrl = router.currentNavigation()!.finalUrl!;
// Skipping the transition if the only thing changing is the fragment and queryParams
const config = {
paths: 'exact' as const,
Expand Down
3 changes: 2 additions & 1 deletion apps/web/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"types": []
"types": [],
"moduleResolution": "bundler"
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts"],
Expand Down
56 changes: 56 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,61 @@
},
"daemon": {
"useDaemonProcess": true
},
"generators": {
"@nx/angular:component": {
"type": "component"
},
"@schematics/angular:component": {
"type": "component"
},
"@nx/angular:directive": {
"type": "directive"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@nx/angular:service": {
"type": "service"
},
"@schematics/angular:service": {
"type": "service"
},
"@nx/angular:scam": {
"type": "component"
},
"@nx/angular:scam-directive": {
"type": "directive"
},
"@nx/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@nx/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@nx/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@nx/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@nx/angular:resolver": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Loading
Loading