Results 92 comments of Kyle June

I just figured out the issue for me, it appears that with the platform being neutral, it fails. I found a PR on the fresh repo where they made a...

> @KyleJune Do you remember why this usage of permission is prevented? I believe that at the time, you could define permissions for a top-level test but not a test...

OP is right that there currently isn't a way to define most test options currently at the file/global level. All you can define currently is the hooks. If any hooks...

The code sited below seems to be the cause of the issue. It assumes that all files can be handled by loadEsm, even files that are not imported. For example,...

Another option is changing the onLoad filter to exclude css. That way the default css loader from esbuild or other plugins after it will be used instead. The downside to...

I was wrong in my last comment about a potential way to workaround the issue. Adding a plugin before it with an onLoad callback won't prevent it from also calling...

> I have an idea on how to work around this. Let me try it. Okay, I'll wait for you to try first. I was just going to try myself...

If the next release is made today or tomorrow, I'll test it out tonight or tomorrow to verify it is working right, allowing me to build css entrypoints using the...

> Should I open a new issue? I can't re-open this one. I opened a new one: https://github.com/lucacasonato/esbuild_deno_loader/issues/159 I'm about to put up a PR for resolving it. Hopefully I...

Here is a link to my PR that I believe will actually resolve this issue. https://github.com/lucacasonato/esbuild_deno_loader/pull/160