Results 10 comments of Magnus Ottosson

I get the same issue when running standalone with ssl cert from letsenctrypt.

> * Am I correct about this statement? you are correct :) Namespacing is definately not a "feature" of graphql but I have seen it used quite a bit i...

Its more like I don't understand how to? :) If I select a layer named for export it will export that layer. If I try to export any other layer...

Added test case for it here: https://github.com/date-fns/date-fns/compare/main...magnusottosson:date-fns:bug/add-months

Seems like this test case passes: ```js it("can add months to march", () => { const result = addMonths(new Date(2014, 2 /* march */, 1), 1); assert.deepStrictEqual(result, new Date(2014, 3...

I also need this. Is the project dead? Any alternatives to get React 18 support?

OK! good. I just wanted to get it confirmed that state is shared :) But then I know and I can handle it.

Another question: It seems that when you run `ReturnEngineToPool` the engine is disposed (if pooling is used). Wouldnt this mean that the current engine wont be used again? So no...

In your jest config change `setupFiles: ['/test/jest-setup.ts']` to `setupFilesAfterEnv: ['/test/jest-setup.ts']` and it should work. `setupFiles` are executed before the jest environment is setup and `setupFilesAfterEnv` after. From the [docs](https://jestjs.io/docs/configuration#setupfilesafterenv-array): >...