Select Git revision
-
William Billingsley authored
VNode, MakeItSo, and DiffNode are the main elements in this commit. It's enough to get a basic site up (as tested with a little site). Docs, example code, more detail, etc to follow.
William Billingsley authoredVNode, MakeItSo, and DiffNode are the main elements in this commit. It's enough to get a basic site up (as tested with a little site). Docs, example code, more detail, etc to follow.
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"
)