Oliver Bell

Results 136 comments of Oliver Bell

Also having this issue. I am a bit confused by your comment @blacktop?

I'm still getting this issue when using `await import(...)` I assume it's related?

This seems to be related to https://esbuild.github.io/api/#splitting >Without code splitting enabled, an import() expression becomes Promise.resolve().then(() => require()) instead. This still preserves the asynchronous semantics of the expression but it...

Yeah, I've checked this and transform is definitely leaving the `await imports` intact. Seems to be a webpack problem but nothing to do with this plugin :)

Sourcemaps are currently wrong :/

For those having this issue in jest only, you can try this ```typescript jest.mock("styled-components", () => { const actual = jest.requireActual( "styled-components" ) as typeof import("styled-components"); const styled = actual.default;...

I'll have a go at a PR over the next week or so :)

FYI for those using jest. Using the `v8` coverage provider is not only faster, but fixes this problem: https://jestjs.io/docs/configuration#coverageprovider-string Edit: There are some drawbacks from using `v8`: https://github.com/facebook/jest/issues/11188

For those looking for the answer to this, my investigation suggests no at the moment. Or at least no if you use `subscription-transport-ws` and `apollo-server` Firstly `subscription-transport-ws` doesn't support sending...

What does your `getClient` function do? It seems the `region: 'local'` param is being used in the host amazon is trying to access > AWS SDK error wrapper for Error:...