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.
2 parents ba88050 + c25eee7 commit 2c6bff2Copy full SHA for 2c6bff2
doc/changelog/next.md
@@ -4,3 +4,4 @@
4
* Scala.js upgraded to 1.10.0
5
* microlibs upgraded to 4.1.0
6
* Scala 3 upgraded to 3.1.2
7
+* Fixed the source map uri to point to the correct location
library/project/Lib.scala
@@ -105,7 +105,7 @@ object Lib {
105
val a = p.base.toURI.toString.replaceFirst("[^/]+/?$", "")
106
val g = s"https://raw.githubusercontent.com/japgolly/$ghProject"
107
val flag = if (isDotty) "-scalajs-mapSourceURI" else "-P:scalajs:mapSourceURI"
108
- s"$flag:$a->$g/v$ver/" :: Nil
+ s"$flag:$a->$g/v$ver/library/" :: Nil
109
}
110
111
)
@@ -179,4 +179,4 @@ object Lib {
179
publish / skip := ((publish / skip).value || disable.value),
180
181
182
-}
+}
0 commit comments