Skip to content

Commit cb8fd92

Browse files
committed
Improved the {t,tt,T,TT} sbt aliases.
1 parent 20e80fd commit cb8fd92

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

project/Build.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,10 @@ object ScalajsReact extends Build {
8989
lazy val root = Project("root", file("."))
9090
.aggregate(core, test, example, scalaz70, scalaz71)
9191
.configure(commonSettings, preventPublication, addCommandAliases(
92-
"t" -> "test/fastOptStage::test",
93-
"tt" -> "+test/fastOptStage::test",
94-
"T" -> ";+clean ;+test:compile ;tt"))
92+
"t" -> "; test:compile ; test/fastOptStage::test",
93+
"tt" -> ";+test:compile ;+test/fastOptStage::test",
94+
"T" -> "; clean ;t",
95+
"TT" -> ";+clean ;tt"))
9596

9697
// ==============================================================================================
9798
lazy val core = project

0 commit comments

Comments
 (0)