Jrson

Results 48 comments of Jrson

@naiyerasif would be awesome if you had time to look into this issue and maybe implement the solution @oscarotero suggested yesterday in the help channel: > The only solution I...

Added Preact JSX to the [experimental plugins repo](https://github.com/lumeland/experimental-plugins).

> Also there's solid.js that you should take a look at. https://www.solidjs.com/ After some testing and research I can say, it will not be an easy task to integrate `solid-js`...

> I think you should take a look at alephjs implementation of solidjs Loader, as there's a compilation step in Lume, we can support solidjs. Just take a look at...

I checked the files maybe because you are importing preact in multiple test files in `tests/assets/nano_jsx/` for the nano_jsx plugin?: ```js /** @jsxImportSource https://esm.sh/[email protected] */ ``` https://github.com/lumeland/lume/blob/master/tests/assets/nano_jsx/index.jsx#L1 https://github.com/lumeland/lume/blob/master/tests/assets/nano_jsx/multiple.jsx#L1 https://github.com/lumeland/lume/blob/master/tests/assets/nano_jsx/with-function.jsx#L1 https://github.com/lumeland/lume/blob/master/tests/assets/nano_jsx/_components/button.jsx#L1...

Did you already start creating the middleware? I started with the TS interfaces. If you have any code I can test with let me know.

@aquaductape ended up creating my own plugin: https://github.com/jrson83/jrson.me/blob/main/plugins/unified/rehype/rehypeSectionize.ts

Please fix & merge this PR!

I also have an issue with deps from `esm.sh`. My `deps.ts`. I'm on Windows 11. ```ts export * from "https://esm.sh/[email protected]"; export { renderToString } from "https://esm.sh/[email protected][email protected]"; ``` When running `udd...

When I was searching for a workaround, how to mock imports with the native test runner I found this looking very similar: https://github.com/nodejs/node/blob/main/test/es-module/test-esm-loader-mock.mjs I can't tell if this is already...