Is there any way to find classes/objects that extend a certain class in sbt
in the sources?
I played around with https://github.com/ruippeixotog/sbt-classfinder but that is only good for Compile
and Test
it seems.
What I intend to do is:
- Find all classes that
extends StyleSheet.Standalone
(from https://github.com/japgolly/scalacss/) - "Compile" (*) (
object.render[TypedTag[String]]
them and put the output in a specific folder
(*) Actually I want to invoke the render method on each of them and put the output (a string) into a x.css
file.