Skip to content

Commit dfab70d

Browse files
Switch to scala-js 0.6.25
1 parent 169a71d commit dfab70d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
import Aliases._
33
import Settings._
44

5+
import sbtcrossproject.CrossPlugin.autoImport.crossProject
6+
57

68
inThisBuild(List(
79
organization := "org.plotly-scala",
@@ -18,7 +20,7 @@ inThisBuild(List(
1820
))
1921

2022

21-
lazy val core = crossProject
23+
lazy val core = crossProject(JVMPlatform, JSPlatform)
2224
.settings(
2325
shared,
2426
plotlyPrefix
@@ -35,7 +37,7 @@ lazy val `joda-time` = project
3537
libs += Deps.jodaTime
3638
)
3739

38-
lazy val render = crossProject
40+
lazy val render = crossProject(JVMPlatform, JSPlatform)
3941
.dependsOn(core)
4042
.settings(
4143
shared,

project/plugins.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.1")
2-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.23")
2+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
3+
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
34
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
45
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.3.0")
56

0 commit comments

Comments
 (0)