Jan Peer Stöcklmair

Results 84 comments of Jan Peer Stöcklmair

I like that! The only thing I miss is the localStorage/global sync (which was the origin of this issue).

Following (as @askirmas suggested) works out of the box with jest. I adapted everything according to @yatki's needs: ```js const createProject = (type) => ({ transform: { '^.+\\.(t|j)sx?$': 'ts-jest', },...

Sounds great. But what if there is no `` applied? Are there 2 or 3 breaks? (`\n`'s are just for clarification) ``` () \n \n ``` or ``` () \n...

Thanks for your issue. Do you have an own `sgcrc` configured? Or does this happen to you out of the box?

Alright, thanks for the information. I will take a look into it

ESC seems to be a good idea indeed, however this would be not really visible to the user (and impossible for mobile users). Best (and the hardest to implement on...

We had the problem with a slightly different use case. For us we didn't had the issue with an unpublished package, but rather with using `npm:` as prefix. It can...

I got into this topic a little as we also stumbled across this. So what I could see is that this is a quite complex problem and there are two...

@yinzara the only thing which is missing is a self execution, I guess the fasted would be to enable mocks before exporting the mock. ```diff + fetch.enableMocks(); module.exports = fetch.default...