mimbrown

Results 11 issues of mimbrown

The `urlToFilename` was adding an extra `?` to the search query before hashing, causing the file names generated by `deno_graph` to not match the hashes generated by Deno itself. This...

It looks like, when you provide sources to `Deno.emit`, specifiers that don't have a file extension break something. Consider the following example: ```js await Deno.emit('file:///index.js', { bundle: 'module', importMapPath: new...

bug
public API

It states explicitly that harbuzz's graphite support was dropped in this implementation. I understand graphite support probably seems like a lot of work for minimal returns, but has there been...

### Describe the problem Svelte handles composability on the logic level quite well, with first-class support for stores. But composability on the HTML element level is a little bit lacking....

I noticed while using the sveltekit site that copying the codeblocks didn't include a lot of necessary newline characters. This is a simple fix that seems to fix the problem...

Since all major browsers now support the origin-private file system, I think the sqlite-backed version of Deno KV should be able to be shipped to the browser as a WASM...

### Describe the problem People want to be able to define higher-order states. This could be an escape hatch to allow them to do it. ### Describe the proposed solution...

# WORK IN PROGRESS This PR adds a new `$effect.sync` rune for synchronous effects. Based on [this off-topic conversation thread](https://github.com/sveltejs/svelte/pull/12943#issuecomment-2302696644) that I caused. ## Changes * [x] add support for...

The types for nested arrays in the `DeepKeys` type seem definitely wrong to me. The type properly handles tuples, but not arrays of arbitrary length. For example, given this type:...

The PR has a couple changes: * Moves most of the bidi functionality to the `core` folder (for lack of maybe a better place). Minimal tweaks to some bidi functions...