Select Git revision
gradle-wrapper.jar
-
William Billingsley authored
This switches to just using Swing and no modules for better compatibility with working with VS Code.
William Billingsley authoredThis switches to just using Swing and no modules for better compatibility with working with VS Code.
build.sbt 407 B
// Turn this project into a Scala.js project by importing these settings
enablePlugins(ScalaJSPlugin)
name := "Example"
version := "0.1-SNAPSHOT"
scalaVersion := "2.12.1"
scalaJSUseMainModuleInitializer := true
testFrameworks += new TestFramework("utest.runner.Framework")
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.9.2",
"com.lihaoyi" %%% "utest" % "0.4.5" % "test"
)