Vadorequest

Results 314 comments of Vadorequest

I also tried to use that "pattern" to try to authenticate using oauth through the url, but it failed, too. ``` const repoUrlWithOAuth = `git+https://${process.env.GITHUB_REPO_TOKEN}:[email protected]/${repoOwner}/${repoName}.git`; ```

Interesting, but using `---` as a separator would conflict with the usual markdown behaviour, choosing another selector that doesn't conflict with existing markdown would be more appropriate, and avoid a...

Yeah, it sounds legit, as I use other libs that are still using Emotion 10. (like StoryBook indeed) > My fix is to do patch-package and comment-out those few lines...

@Andarist Agreed, nothing to be done from Emotion standpoint besides having a dedicated thread with work arounds and explanations. I guess we should just keep this issue opened until it's...

@threehams I've opened https://github.com/emotion-js/emotion/issues/2303, which is different because it's more focused on the [LightHouse](https://web.dev/measure/) "performance" score (in production), but your latest example interests me. I wonder if you've noticed any...

Why hasn't this been addressed? The fix look good to me at first glance. I updated a few package versions and got caught up with this error, I have to...

Had to go from : ``` "jest": "28.0.3", "jest-expect-message": "1.0.2", "jest-extended": "2.0.0", "jest-runner-groups": "2.2.0", "jest-to-match-shape-of": "1.3.2", "ts-jest": "28.0.3", ``` To: ``` "jest": "26.6.3", "jest-expect-message": "1.0.2", "jest-extended": "0.11.5", "jest-runner-groups": "2.0.1", "jest-to-match-shape-of":...

Yes, I am. https://github.com/UnlyEd/stacker-public-scripts/blob/issue-_default/spack.config.js

What I did in the meantime was to use `require` instead. Ah, I changed the repo visibility to private since creating this issue. **spack.config.js** ```js const fs = require('fs'); const...

This is becoming more and more of a daily issue, I cannot use TypeScript properly. ``` const NcoUser = require('../../types/NcoUser').default; const user: typeof NcoUser = findNcoUser(); ``` What I really...