Select Git revision
-
Will Billingsley authored
Last year, this was all written in a hurry so I just copied in the veautiful code. This commit updates the code to use more recent versions of Scala, Scala.js, and my Veautiful UI kit
Will Billingsley authoredLast year, this was all written in a hurry so I just copied in the veautiful code. This commit updates the code to use more recent versions of Scala, Scala.js, and my Veautiful UI kit
build.sbt 786 B
// Turn this project into a Scala.js project by importing these settings
enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
name := "Example"
version := "0.2-SNAPSHOT"
scalaVersion := "2.13.1"
resolvers += "jitpack" at "https://jitpack.io"
scalaJSUseMainModuleInitializer := true
testFrameworks += new TestFramework("utest.runner.Framework")
libraryDependencies ++= Seq(
"com.github.wbillingsley.handy" %%% "handy" % "master-SNAPSHOT",
"com.github.wbillingsley.veautiful" %%% "veautiful" % "master-SNAPSHOT",
"com.lihaoyi" %%% "upickle" % "0.8.0",
"org.scala-js" %%% "scalajs-dom" % "0.9.7",
"org.scalatest" %%% "scalatest" % "3.0.8" % "test"
)
npmDependencies in Compile += "hjson" -> "3.1.1"
webpackBundlingMode := BundlingMode.LibraryOnly()
emitSourceMaps := false