Gary Roberts

Results 16 comments of Gary Roberts

It does currently require the developer to manually build an integration with a database layer or storage solution. If it was 2017 it would be the labelled as a hot...

Typescript now has a pattern for this with specific ordering being maintained via groups/comments: https://devblogs.microsoft.com/typescript/announcing-typescript-4-7-rc/#group-aware-organize-imports New developers picking up Deno might be surprised if this feature does not propagate through...

An option to "automatically disable preview deployments after x number of days" would be ideal for my purposes yes! Would save any manual maintenance steps. Another alternative instead of basing...

Server choice of std vs oak might be an option that could be picked from when the Init UI (https://github.com/alephjs/aleph.js/pull/47) is in place. Could skip the need for documentation.

I'm using the framework agonistic version of Emotion (CSS-in-JS) in Aleph.js without any effort: https://emotion.sh/docs/@emotion/css using the esm.sh import in my import_map.json: ``` { "imports": { ... "@emotion/css": "https://esm.sh/@emotion/[email protected]", ......

So the main hurdle i faced without @jsx directive support, is when I tried this (as per emotion documented example): ``` /** @jsx jsx */ import { jsx, css, Global,...

It turns out it was my IDE (VS Code) removing it. The directive is not removed if it is the very first line in the file. However this just led...

It will help prevent nasty bugs in codebases that makes heavy use of destructuring (with shadowed variable names in closures) alongside https://github.com/denoland/deno_lint/issues/1123

This would be appreciated as I tried to piece together a hello world plugin from a combination of the docs, fixtures & blog post and failed miserably. As it happens...

It seems if you click on an svg (e.g from a tabler icon) within an anchor, the href is followed but the f-partial nav feature is not triggered. If you...