Results 56 comments of Kyle June

I'm against this change because there is an easy alternative to this that is much more flexible. With template strings you can make the title include the variables and with...

> I think we should... > > 1. Change `assertRejects` to only pass when the function executed returns a promise that rejects. > > 2. If the function throws and...

Here is another example demonstrating why it matters. In it, all 3 example functions are expected to return a promise. The exampleC function doesn't return a promise and instead throws....

> With the change, how do we assert async functions that throw instead of returning a rejecting `Promise`? I wanted to test the new `assertRejects` implementation, but it is an...

I just tried that now. It still shows the same but links to the type for ItArgs. I originally didn't export it because I didn't want to add an export...

I had a similar relative import path issue with another module of mine too. https://esm.sh/@twind/[email protected]?target=deno&pin=v85 ``` error: Relative import path "twind" not prefixed with / or ./ or ../ and...

> @KyleJune thanks for reporting! i guess the vendor error was caused by deno CLI, can you please create a pr for deno repo? I think it's this line in...

> > > @KyleJune thanks for reporting! i guess the vendor error was caused by deno CLI, can you please create a pr for deno repo? > > > >...

I found the issue by adding the &dev to the querystring. In the code sample below, `import * as colors from "...";` results in colors being the module instead of...

As a temporary workaround, I've made a local copy of preset-tailwind-forms.js and changed `import * as colors from "...";` to `import { default as colors } from "...";` and the...