Michael Lazarski

Results 16 comments of Michael Lazarski

Looking at the EJSON clone function, there are several `Object.keys`. https://github.com/meteor/meteor/blob/24865b28a0689de8b4949fb69ea1f95da647cd7a/packages/ejson/ejson.js#L174 This is called way before the mentioned `adjustTypesToJSONValue`. ```js Object.keys('a'.repeat(16*1024*1024+1)) ``` This will run out of memory. The same...

There is an PR for improving EJSON https://github.com/meteor/meteor/pull/10422

@zxch3n thanks for the info. Are you accepting PR's? If you could just point me to the right file, I could take a look at it :)

Thanks for the info, I have investigated this a little and looked into the vitest/ui package because there it works. They are basically connecting to the server like this: https://github.com/vitest-dev/vitest/blob/main/packages/ui/client/composables/client.ts...

@Kiyozz I'm still getting the error after running: ``` pnpm store prune rm -rf ~/.pnpm-state ~/.pnpm-store pnpm prune rm pnpm-lock.yaml rm -rf node_modules pnpm up ```

@Kiyozz nope just a project

with pnpm 7.X in the package.json this works for me but only with `pnpm`. ```json "pnpm": { "peerDependencyRules": { "ignoreMissing": [ "@algolia/client-search", "react", "react-dom", "@types/react" ] } } ```

Also setting this via the `responsive` option does not work. The height is also ignored.

> > can you elaborate your technique?? > > as m facing this too... > > So of course this is just temporary fix as I don't think the dev...