Conduitry

Results 523 comments of Conduitry

If a library has `exports` in its `package.json`, that indicates to Node that those are the only things that can be imported or required from the package, and if it...

I've had this happen to me occasionally as well, generally if the app takes a long time to boot up. There's some timeout that stops waiting for the server to...

This isn't possible with Svelte in its current form, because SSR is always synchronous. This is part of what `preload` is for - it lets you run asynchronous code before...

I'm transferring this from the ESLint plugin repository to the Prettier plugin repository, because the ESLint plugin doesn't do any reordering like this.

``` { "@context": "https://schema.org", } ``` is invalid JS. We probably don't want Prettier to just ignore other `` blocks besides the top-level `` and `` ones, so we need...

Are there any thoughts from people pushing for this (or the various related issues/PRs) about what hrefs should be relative to? Sapper currently allows page routes to be accessed with...

I don't think there are implementation hurdles - this is already sort of available as `$$props.$$slots` but there's no official public API for it currently. This is also discussed in...

A similar suggestion came up [a year ago on Discord as well](https://discord.com/channels/457912077277855764/507200834837151754/650023325988290560), and I'm not thrilled about the new suggested syntax either.

By "batch", do you mean something like a derived store that always waits til the next tick before updating its value? An async store like that is something that has...