John Crim

Results 103 comments of John Crim

How about a (non-public?) unified stream, and getters for each of the event type streams that returns a lazily created filtered view of the unified stream?

In the Chrome Dev Summit yesterday, the [Transitioning to Modern Javascript](https://developer.chrome.com/devsummit/sessions/transitioning-to-modern-javascript/) talk encouraged developers to target ES2017, as a sweet spot with small size and 95+% browser support. So this...

I'm seeing issues building libs and apps on a minimal project (and the same errors in real projects). The 2 issues are listed above. I also had to fix some...

I wasn't aware that Yarn 3.1 doesn't really/fully implement ESM imports - which explains the issues I reported. The issues I reported go away if you `yarn set version canary...

Here's one that I've encountered recently. Previously, our tsconfig had: ```json "include": [ "**/*.spec.ts" ], ``` We did this to minimize the surface area that jest processes (since the *.spec...

Here's another one that you'll probably run into when migrating to ES modules. When migrating to ESM, you'll need to [add `@jest/globals` imports to all your test files that use...

@Lonli-Lokli I would open a separate issue for that, lest this thread become a place to post new issues. The problem you're having is due to tslib requiring special handling....

@jbeckton - your describe should not be async; move the `async` to the lambda in the `it()`.

Thanks @rwaskiewicz . I certainly understand waiting until the experimental phase ends - I can't fault you for that, though I don't know how long it will remain in experimental....

Hi @rwaskiewicz - I have a [working PR](https://github.com/ionic-team/stencil/pull/3256) that works great for our projects. Lmk when you have time to review.