Open adamreisnz opened 1 month ago
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 feature itself are significantly more recent than the Vite Ruby CLI.
Allowing debug
to take a value makes sense, though dry-cli
doesn't seem to currently support options that can be both boolean or string:
In the meantime, follow the Debugging section in Vite Ruby:
Thanks I expected as much. Yes I did follow the guide, but I think it'd be worth updating the guide and at least mention that you cannot use --debug
and DEBUG=xxxxx
at the same time. It took a bit of trial and error to figure that out, and currently the guide implies that you can/should use both.
bundle update vite_ruby
.Description 📖
Looking at the documentation on debugging Vite:
The
--debug
flag is mentioned, and as per the Vite documentation it should be able to accept a feature identifier string, for example--debug hmr
, to only debug output for that specific component, e.g.:However, this doesn't work, as it interprets the parameter as something else and breaks the dev server altogether. Probably because the parameter isn't being passed by Vite Ruby to Vite itself?
So if we follow the Vite Ruby documentation, there is a second way to limit what gets logged, by using
DEBUG
env var, e.g. we can try:However, this also doesn't work as Vite seems to merge what is passed via the
--debug
flag with what's inDEBUG
, and if you use both, it appears to ignore the env var value.In the end you have to use only the env var:
And this behaves as expected. So basically you should not use the
--debug
flag, and instead only use theDEBUG
env var if you want to limit the output that gets logged.Not sure if this is a "bug" with the
--debug
flag perse (as it doesn't seem to pass the feature), or if documentation needs to be updated to clarify that you shouldn't use both--debug
andDEBUG
, and that passing features via--debug
doesn't work.Reproduction 🐞
bin/vite dev --debug hmr
and observe that this doesn't work as expected – the HMR argument is instead used as base directory I believe.DEBUG=vite:hmr bin/vite dev --debug
and observe that this doesn't limit debugging to vite:hmr only, instead it logs everything.DEBUG=vite:hmr bin/vite dev
and observe that this works as expected