-
Notifications
You must be signed in to change notification settings - Fork 976
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
fix: support default
and reqHandler
exports in Angular
#8145
Conversation
3788912
to
e4cfcf2
Compare
default
and reqHandler
exports in Angulardefault
and reqHandler
exports in Angular
Updated the export structure to ensure both `default` and `reqHandler` exports function when using Angular.
e4cfcf2
to
6bfdff0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PTAL @leoortizz. This should get us up and running with the Angular 19's default server.ts
@@ -36,7 +36,7 @@ export const docsUrl = "https://firebase.google.com/docs/hosting/frameworks/angu | |||
|
|||
const DEFAULT_BUILD_SCRIPT = ["ng build"]; | |||
|
|||
export const supportedRange = "16 - 18"; | |||
export const supportedRange = "16 - 19"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jamesdaniels FYI
thanks @alan-agius4! I added changelog and increased the supported Angular version to 19. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #8145 +/- ##
==========================================
+ Coverage 51.12% 51.13% +0.01%
==========================================
Files 423 423
Lines 29722 29711 -11
Branches 6083 6082 -1
==========================================
- Hits 15196 15194 -2
+ Misses 13160 13151 -9
Partials 1366 1366 ☔ View full report in Codecov by Sentry. |
Updated the export structure to ensure both
default
andreqHandler
exports function when using Angular.