Hi! I have two small questions: β’ when I run the watch command with yarn it seems that yarn want to install dependencies automatically. Is there a way to disable this behaviour? β’ I have a node script target. Is there a way to start automatically the process or I should start it manually?
what yarn does no clue, but if you are talking about shadow-cljs installing dependencies then you can set :npm-deps {:install false} in shadow-cljs.edn to stop that
node scripts you are supposed to start or manage yourself. shadow-cljs will not start them for you. if you just want a node repl you can use shadow-cljs node-repl that isn't tied to any particular build.
Thanks @thheller
After upgrading shadow-cljs to "3.2.1", I was seeing a lot of extra log messages in my server terminal...
The problem was on my end, a logback dep had snuck in, sorry for the noise. π
PS. having a lot of fun at the moment moving some related (were never really separate) projects into the same project and simplifying building/testing them. Thanks theller and others!
[not urgent] Curious about the occasionally-discussed idea here about switching from undertow to jetty. What's the latest thinking on that?
whatβs the motivation (just curious)?
on java24 you get some annoying messages due to undertow on startup and jetty is just a better server these days. no priority at all though.
still planning on doing it, just not a priority. been too busy lately to look into it properly.