Mateusz Derks

Results 23 comments of Mateusz Derks

We had one attempt with #399 but it did not get too much attention. Without any suggestion on what kind of contribution is expected instead I gave up on fixing...

I wouldn't recommend using lerna nowadays, it's [maintenance is seems to fade out](https://github.com/lerna/lerna/issues/2703#issuecomment-744601134) and we can get a lot with yarn 3 workspaces alone.

@tomap, nothing changes on the end users side. We would keep the package hierarchy in NPM registry as it is now. The migration to yarn workspaces and monorepo will affect...

@hexojs/core any thoughts on that? I'm still actively developing those utils, plan to add more documentation which would be also a nice introduction to Hexo internals I think. Would you...

A lock file in library repo is more for developers than end users. Lock files of dependencies are ignored on installation anyway, the only relevant lock file is the one...

My blog was also affected by this bug and I have it fixed by using markdown-it Since I already had the renderer installed https://github.com/hexojs/hexo-renderer-markdown-it I just added the prism plugin...

@jhnns Any chance to have it merged? It would make integration with https://github.com/sinonjs/lolex much easier

Is `parent_category` field nullable? I had impression that we get nulls for all nullable fields so I expected the function to be more like: ``` export function createProductCategoryMock(props: Partial =...

From a quick search I see people advice against it as you can't write a query that fetches all the levels of nesting. People who actually need non-nullable recursive seem...

I created a sandbox with the bug reproduced in the simplest possible way: https://codesandbox.io/p/sandbox/gallant-benz-5dj4ht?file=%2Fsrc%2FApp.js%3A5%2C40 Looks like it happens because of the `Data` object [is a singleton](https://github.com/missive/emoji-mart/blob/21a2708be931c0dd16d6d0e96b47a45503576ac5/packages/emoji-mart/src/config.ts#L12) and that doesn't play...