Máximo Mussini

Results 129 comments of Máximo Mussini

I haven't used MongoDB or Mongoid for the past 5 years, so I no longer have a way to thoroughly test these changes. Happy to transfer the library to @danarnold...

@jclusso I've requested transferring this repo to your account, I didn't have permission to transfer it to @cacheventures, and @danarnold already has a fork of this repo so it wouldn't...

> confine the proposed enhanceIslands feature to Vue islands only I think that makes sense. > would it be more beneficial to re-strategize Iles's scope to focus solely on Vue?...

> as iles core and @islands/hydration are two separate packages, the userApp can't be imported directly We might add the import in `Island` when generating the script, importing `enhanceIslands` from...

This is probably the biggest pain point in îles for newcomers. Detecting listeners and automatically disabling them, or inferring that those components must be islands would both be good ways...

> a way to make the files build into . instead of ./vite when using Storybook Have you tried configuring [`publicOutputDir`](https://vite-ruby.netlify.app/config/#publicoutputdir) to `.`? Maybe you could pass the `VITE_RUBY_PUBLIC_OUTPUT_DIR="."` environment...

Hi Brian! The guide recommends [running `assets:precompile` in the CI](https://vite-ruby.netlify.app/guide/development.html#integration-tests-in-the-ci-%E2%9C%85), which should install dependencies, although it's more robust to do it explicitly. I'm not familiar with Kamal or Devcontainers, happy...

Hi Ivan! Haven't tried with [Library Mode](https://vitejs.dev/guide/build.html#library-mode), but I think that only affects `vite build`. > With Vite, you can use your index.html for that purpose to get the smooth...

What configuration are you using for `vite-plugin-full-reload`? Also, is Vite detecting changes but not reloading the page, or is it not detecting changes at all? Finally, are the modified files...

As a temporary workaround, you could try: ```ruby # config/initializers/js_from_routes.rb if Rails.env.development? # Internal: Override to prefer POST requests for dual paths. JsFromRoutes::Route.prepend Module.new { def verb @route.verb.split("|").last.downcase end }...