We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3646c7 commit a52599fCopy full SHA for a52599f
core/api/src/mill/api/MappedRoots.scala
@@ -4,9 +4,11 @@ import mill.constants.PathVars
4
5
import scala.util.DynamicVariable
6
7
-trait MappedRoots {
+type MappedRoots = Seq[(key: String, path: os.Path)]
8
9
- private type MappedRoots = Seq[(key: String, path: os.Path)]
+object MappedRoots extends MappedRootsImpl
10
+
11
+trait MappedRootsImpl {
12
13
private val rootMapping: DynamicVariable[MappedRoots] = DynamicVariable(Seq())
14
@@ -74,5 +76,3 @@ trait MappedRoots {
74
76
}
75
77
78
-
-object MappedRoots extends MappedRoots
0 commit comments