Naftoli Gugenheim
Naftoli Gugenheim
Is the layer supposed to be in the companion of the interface or implementation? It seems to contradict itself.
An easier, partial solution, at least for the magneticio case, is that instead of building the pom from sbt settings first, and then appending pomExtra, you start with pomExtra and...
With [`yq`](https://github.com/mikefarah/yq/) and Bash you could do ```bash cs resolve -t $(yq eval '.projects.main.dependencies[]' bleep.yaml) ``` where `main` is the module name. That will at least give you a tree,...
Can I now write a for comprehension with only aliases, no generators?
> > Can I now write a for comprehension with only aliases, no generators? > > No, the for-comprehension will still have to contain at least one generator to be...
@Mergifyio rebase
Superseded by #2791
Also what about https://github.com/zio/zio-metrics-connectors/pull/70#discussion_r2536255612 Why is it ```scala lazy val statsdUDP: ZLayer[StatsdConfig & MetricsConfig, Nothing, StatsdClient] = ZLayer.scoped { for { config
I can do ```scala /** * Creates a layer that provides a StatsdClient that sends metrics over UDP network protocol. */ lazy val statsdUDP: ZLayer[StatsdConfig & MetricsConfig, Nothing, StatsdClient] =...
https://github.com/zio/zio-metrics-connectors/pull/141