Allows you to build WebJars from Scala.js projects.
addSbtPlugin("de.lhns" % "sbt-scalajs-webjar" % "0.5.0")
lazy val shared = crossProject(JSPlatform, JVMPlatform).crossType(CrossType.Pure).in(file("shared"))
lazy val sharedJs = shared.js
lazy val sharedJvm = shared.jvm
lazy val frontend = project.in(file("client"))
.enablePlugins(ScalaJSWebjarPlugin)
.dependsOn(sharedJs)
lazy val frontendWebjar = frontend.webjar
lazy val server = project.in(file("server"))
.dependsOn(sharedJvm)
.dependsOn(frontendWebjar)
This project uses the Apache 2.0 License. See the file called LICENSE.