add simple rendering of other players
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import org.scalajs.linker.interface.ModuleSplitStyle
|
||||
|
||||
lazy val planningPokerGrargh = project.in(file("."))
|
||||
lazy val planningPokerGrargh = project
|
||||
.in(file("."))
|
||||
.enablePlugins(ScalaJSPlugin) // Enable the Scala.js plugin in this project
|
||||
.settings(
|
||||
scalaVersion := "3.2.0",
|
||||
@@ -18,12 +19,13 @@ lazy val planningPokerGrargh = project.in(file("."))
|
||||
scalaJSLinkerConfig ~= {
|
||||
_.withModuleKind(ModuleKind.ESModule)
|
||||
.withModuleSplitStyle(
|
||||
ModuleSplitStyle.SmallModulesFor(List("livechart")))
|
||||
ModuleSplitStyle.SmallModulesFor(List("livechart"))
|
||||
)
|
||||
},
|
||||
|
||||
/* Depend on the scalajs-dom library.
|
||||
* It provides static types for the browser DOM APIs.
|
||||
*/
|
||||
libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "2.4.0",
|
||||
libraryDependencies += "com.raquo" %%% "laminar" % "15.0.1",
|
||||
libraryDependencies += "com.raquo" %%% "laminar" % "15.0.1"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user