Óscar Otero

Results 324 comments of Óscar Otero

Hi. Can I see the code of how you're using the component? In Lume, components are loaded automatically in the `comp` variable. Example: ```tsx export default function ({ comp}: Lume.Data...

The problem is Deno caches the imported modules and there's no way to invalidate the cache to refresh the modules. In Lume, this limitation is solved loading the file with...

Thanks for highlighting this. I'll try if https://esbuild.github.io/api/#out-extension can fix that.

After different attemps, I wasn't able to configure esbuild to make this change automatically. Seems like this decision is made by design, and the only way to change the extension...

@scarf005 I've been making a lot of changes in the esbuild plugin, and, among other things, I tried to fix this issue. It's not a perfect solution but I think...

Thank! Your implementation looks great! The only problem is the `metas` object has one more level of depth that will cause merging issues. For example, if in the root `_data.yml`...

@niklasmtj Hey there! Have you been able to make any progress in this? No problem if you need more time, just want to know it because I want to release...

@niklasmtj I cannot commit to your PR (obviously) so created this new branch and PR #608 with your commits and additional changes to make the `metas` object flat. So I'm...

This is a Deno bug (https://github.com/denoland/deno/issues/19696). I should add a try/catch to avoid this. Cleaning the cache always worked for me. For example: ```js await caches.delete("magick_native"); ``` Then, try again...

You should ask to the original author: https://github.com/dlemstra/magick-wasm This code is just a port to make it working on Deno. But it doesn't support SVG formats so I guess PDF...