Simen Brekken
Simen Brekken
Chiming in with the same problem reported from our CI. I'm importing and using the following types: ```ts import { ItemList, ListItem, VideoObject, WithContext } from 'schema-dts'; ```
Declarations are being dropped for me as well: ``` css .brand, .name, .description { margin: 0 auto; padding: 0 20px; max-width: 360px } .brand, .name { margin-top: 0; line-height: 1...
[Epoch's Fables from kingstonpork](http://www.mixcloud.com/kingstonpork/) 191 mixes and counting, incredible quality and variation.
We'd need to split the HoC's and add ``. As we're using a query path and object syntax, we might be able to simply translate `foo/bar/faz` into `db.collection('foo').doc('bar').collection('faz')`
Sorry for the lack of updates. We've simply been too busy to add Firestore support right now. I'll update the README to encourage PRs for this feature
@gmaclennan I've taken a stab a this in https://github.com/unfold/react-firebase/tree/merge-props-error-handling if you'd like to give it a try. There's no docs yet but the added tests should be understandable enough.
Are you still tracking this @gmaclennan or should we go ahead without your input?
I ran into this problem myself and after a deep-dive into Cypress' logging internals I discovered a novel workaround, simply hide fetch/XHR command log entries with CSS. https://gist.github.com/simenbrekken/3d2248f9e50c1143bf9dbe02e67f5399
I've just released something similar, while it doesn't actually use Redux it has basically the same API surface. https://github.com/unfold/react-firebase
I believe you can simply use `sed` to comment out any console statements before passing the script to UglifyJS. ``` bash sed -E 's/(console\.)/\/\/\1/g' script.js | uglifyjs ```