Mark Gibson

Results 69 comments of Mark Gibson

The problem is that import maps don't understand the semantics of the version in the URL, it must literally match the URL of the import. If you look at the...

It would be useful and very developer friendly to be able to specify URLs in the deno.json that are hit after deployment. Maybe a `deploy` prop, to allow future config...

Me too, so I've raised a PR ^

I'm in two minds about this, as @kt3k says, TS is not robust enough to rule out the possibility of incorrect types being passed, and runtime checking could be very...

Thanks I've not seen typia before, although I'm aware of runtime type checking libs such as zod (and ts-to-zod), typebox, io-ts etc. What I'm not aware of is any attempt...

TS is very much based on structural/duck typing. Many existing runtime checkers (eg. zod) validate the shape of an object rather than it's instance, as the primary use case is...

I've used this based on a flick through the code... ```ts declare interface Idiomorph { morph: (oldNode: Element | Document, newContent?: string | Element | Iterable | null, options?: {...

As `deno bundle` is now deprecated, are there plans to switch to an alternative bundler, eg deno_emit, or esbuild?

If it's any help I have a script that uses esbuild and esbuild-deno-loader (to build a service worker for the browser, but that's not so relevant), and it seems to...

I'm using JSX in Deno, and was using Preact (and preact-render-to-string), but I was curious as to whether hastscript would be suitable instead. At first the lack of function components...