GuyBorderless
GuyBorderless
I'm missing two formatting options which prettier solves via a plugin mechanism: 1. [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) is rather important for tailwind dx 2. move imports to top of file: in a large...
If I offload job handling to serverless functions that take work via fetch(). How do I run queue maintenance periodically, preferably without creating a non-serverless queue worker? Is this scenario...
I want to review unused exports and dependencies. It would be nice to see them via something like `deno info` but maybe also have them marked at the LSP level...
**Describe the bug** Snippets (and other) intellisense extremely slow to show completions (8-10 seconds) on vs code. Deno output shows: client asked to cancel request 130, but no such pending...
# Feature request The [next](https://github.com/statelyai/xstate/labels/XState%20v5%20alpha) version of xstate (V5) seems geared towards server environments, so it might be an ergonomic (and OSS) approach to supabase workflows. Some things I'd like...
Is your feature request related to a problem? Please describe. I find [p-limit](https://www.npmjs.com/package/p-limit) helpful (APIs often limit user concurrency). The async module already has retry, debounce, and pooledMap which are...
To do so we need a PKGBUILD file and a github action ([like this](https://github.com/marketplace/actions/publish-aur-package))
the vscode type peek window truncates the type shown. from my testing vscode extensions like [TS type to clipboard](https://marketplace.visualstudio.com/items?itemName=lwkchan.make-a-type) do not work with deno. typescript has `tsc filename.ts --declaration --emitDeclarationOnly`...
Version: Deno 1.43.4 (but occurs with older versions too) If the project root is mapped for [absolute imports](https://docs.deno.com/runtime/manual/basics/import_maps#example---using-project-root-for-absolute-imports) with ``` { "imports": { "/": "./", "./": "./" } } ```...
see [example repo](https://github.com/guy-borderless/fresh-clone-in-island) Only way I can clone an element on both client and server is to pass its children inside an island. e.g. `islands/clone.tsx` ```typescript export function Clone1H2(p: CounterProps)...