I'm trying to add a new command to my sbt.
In my build.sbt
I have
lazy val root = (project in file(".")).settings(mySuperDuperCommand)
In a sibling file mySuperDuperCommands.sbt
I have
lazy val mySuperDuperTaskKey = TaskKey[Unit]("mySuperDuperCommand")
lazy val mySuperDuperCommand := { ... do *amazing* stuff ... }
It gives me the error cannot resolve symbol "mySuperDuperCommand"
inside build.sbt
. How to solve this conondrum?