Created
December 9, 2017 21:02
-
-
Save sjrd/b3b562a2d7eed1e937ac0c7d371c3a7d to your computer and use it in GitHub Desktop.
Trying to reproduce https://github.com/scala-js/scala-js/issues/3218 (no luck so far)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enablePlugins(ScalaJSPlugin) | |
scalaVersion := "2.12.4" | |
scalaJSUseMainModuleInitializer in Test := true | |
scalaJSModuleKind := ModuleKind.CommonJSModule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sbt.version=0.13.16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.21") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object TmpApp { | |
def main(args: Array[String]): Unit = { | |
println("asdf") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment