Máximo Mussini

Results 129 comments of Máximo Mussini

> The --debug flag is mentioned, and as per the Vite documentation it should be able to accept a feature identifier string That portion of the Vite guide, and the...

Have you tried configuring [`base`](https://vite-ruby.netlify.app/config/index.html#base) in your `config/vite.json` file?

Hi Rein! This gem currently assumes each controller action has a [single path](https://github.com/ElMassimo/js_from_routes/blob/main/js_from_routes/lib/js_from_routes/generator.rb#L18), allowing it to [group helpers by controller](https://github.com/ElMassimo/js_from_routes/blob/main/js_from_routes/lib/js_from_routes/generator.rb#L192) name. A workaround to disambiguate is to have two stub...

Hi Ben, thanks for the heads up! Does `tinyglobby` provide the same API as `fast-glob`? Based on the readme, it looks like this should be a quick change.

There's a [built-in option `skipProxy`](https://vite-ruby.netlify.app/config/index.html#skipproxy-experimental) to skip the proxy, but it has some [incompatibility](https://github.com/ElMassimo/vite_ruby/blob/d4bd2efe4194e40a1cb32d1f0c8efd8a1980db9c/vite_rails/lib/vite_rails/tag_helpers.rb#L66) issues that make it tricky to enable it out of the box without breaking existing projects....

Rewriting `watched_files_digest` to manually resolve `config.watched_paths` instead of using `chdir` seems reasonable.

Hi Andy! I think it's a nice improvement, I'll test it when I have some time.

I'm usually wary of adding more configuration options unless it comes up often in practice, or there's no practical way to achieve the same result. --- Currently, users may monkeypatch...