Antoine CAILLY

Results 19 comments of Antoine CAILLY

My fix is a workaround oustide this repo and specific to my use case, so I don't really have a good fix to submit

If it can be useful for others, I solved it like that: ```javascript const remoteCommits = await git.log({ fs, dir: folder, depth: 1, ref: `refs/remotes/${remoteName}/${remoteBranch}`, }); const remoteOid = remoteCommits...

I resolved this issue by overriding the dependency resolution : ``` "overrides": { "firebase": [the version of firebase you use] } ```

@zombieJ do you understand why this problem occurs? I don't 😄

Thank you for your answer, this workaround seems ok for my case: ``` const lastFieldValueRef = useRef() useEffect(() => { if (lastFieldValueRef.current != fieldValue) { lastFieldValueRef.current = fieldValue onChange?.(fieldValue) }...

I had the same issue, with an error saying `TypeError: _this.backdropRef.transitionTo is not a function` After browsing all the mocks in this issue, I found that a modified version of...

I found this issue because I was not able to make jest work with babel 7 and storybook I thought I would be blocked until this issue was fixed but...

same error here on `SyntaxError: Invalid unicode escape in identifier: '\u2118'` when the named-references file is loaded (https://github.com/mdevils/html-entities/blob/master/src/named-references.ts), this error is triggered in Safari 12.1 OK with Safari 12.3 and...

maybe this is related: https://github.com/prettier/prettier/issues/5052