Dmitri Polchinski
Dmitri Polchinski
Example: ```scala case class Type(name: String) @newtype case class Foo(value: List[Type]) val value: List[Type] = List(Type("abc")) Foo(value) ``` The code does not compile due to the following error: ``` type...
Currently `ContramapLoggable` doesn't respect masking These changes are meant to fix that The previous behavior can be seen here: https://scastie.scala-lang.org/Rw5jMFJ2Q7OukcdgVRXaUg
This PR is an attempt to provide a more flexible configuration for source generator commands through templating. It should be fully backward compatible with existing source generator configurations. ## Implementation...
This PR aims to add support for source generators in scala-cli, addressing #610 and providing an alternative approach to https://github.com/VirtusLab/scala-cli/pull/3033. Source generators can be configured using "named" directives. This allows...