J Rob Gant

Results 109 comments of J Rob Gant

@eyoeldefare See the overrides necessary: https://github.com/FirebaseExtended/rxfire/issues/88#issuecomment-1715851191

@Steve-from-Memphis > I tried this, I get Override for @angular/fire@^7.6.1 conflicts with direct dependency error when I perform npm install Your `"dependency": { "@angular/fire": "`version` must match the override version.

This is not the correct fix for this problem. The issue (for me) is that @angular/[email protected] is using firebase@9 which is still using [@firebase/[email protected]](https://github.com/firebase/firebase-js-sdk/blob/74c3bfbfb64ae62f895e0e5c831b5584f70f6292/packages/firestore/src/lite-api/aggregate_types.ts#L74) but rxfire is expecting [@firebase/firestore@4](https://github.com/firebase/firebase-js-sdk/blob/98cfcbd0c0629d4aee60f686edc0da3e27ce36c6/packages/firestore/src/lite-api/aggregate_types.ts#L74). ```...

I believe that this pattern for HtmlFilterTernary would work better: ``` regex \s*(?:::)?([^?|}]*\?[^:]*:[^|}]*)\s*\|\s*translate(:.*?)?\s* ``` The change is in the first character class which was `[^?]*` (match any characters not ?)...

In the meantime, adding a comment like this will help to prevent this regex from matching incorrectly. I inserted it after a ternary before the next translate. ``` ``` Edited:...

The documentation currently says to do what doesn't work. https://docs.sentry.io/platforms/javascript/guides/angular/sourcemaps/uploading/angular-webpack/ If there isn't bandwidth to remove unplugin, perhaps there is bandwidth to update the documentation with an alternative setup? Because...

Angular v14 is _really_ old and [well past end of support](https://angular.dev/reference/releases#actively-supported-versions). IIRC this was a problem with updating to v16 (based on the age of my original comment), and definately...

@akinnee For this override: ```json "overrides": { "ng2-charts@^5.0.4": { "@angular/cdk@>=16.0.0": "^16.0.0" } ``` I just write a sed like: ``` sed -i '' -e 's#"@angular/cdk": ">=16.0.0",#"@angular/cdk": "^16.0.0",#' package-lock.json ```

Trying to write tests with the Firebase Emulator it seems that sign in can persist across tests. I hoped that setting `setPersistence(auth, inMemoryPersistence)` would help, but it does not seem...

Got really tired of trying to remember to manually toggle this on and off. So I used the AWS CLI to manage changed headers: ```hcl locals { custom_headers = templatefile(...