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 6205d4f commit c387560Copy full SHA for c387560
build.sbt
@@ -14,6 +14,16 @@ val commonSettings: Seq[Setting[_]] = Seq(
14
organization := "org.scala-js",
15
scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"),
16
17
+ scalacOptions ++= {
18
+ if (isSnapshot.value)
19
+ Seq.empty
20
+ else {
21
+ val a = baseDirectory.value.toURI
22
+ val g = "https://raw.githubusercontent.com/scala-js/scala-js-java-time"
23
+ Seq(s"-P:scalajs:mapSourceURI:$a->$g/v${version.value}/")
24
+ }
25
+ },
26
+
27
homepage := Some(url("http://scala-js.org/")),
28
licenses += ("BSD New",
29
url("https://github.com/scala-js/scala-js-java-time/blob/master/LICENSE")),
0 commit comments