Skip to content

Commit 9c92248

Browse files
committed
Example project fix
1 parent e80784b commit 9c92248

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ val commonSettings = Seq(
3434
)
3535

3636
val commonJSSettings = Seq(
37-
//Compile / emitSourceMaps := true,
37+
Compile / emitSourceMaps := true,
3838
Test / parallelExecution := false,
3939
Test / scalaJSStage := FastOptStage,
4040
// ScalaJSBundlerPlugin does not work with scalajs-env-selenium:

example/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ inThisBuild(Seq(
66
))
77

88
val commonSettings = Seq(
9-
scalaVersion := "2.12.7",
10-
crossScalaVersions := Seq("2.11.12", "2.12.7"),
9+
scalaVersion := "2.12.10",
10+
crossScalaVersions := Seq("2.11.12", "2.12.10"),
1111
scalacOptions ++= Seq(
1212
"-feature",
1313
"-deprecation",

example/project/build.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
sbt.version = 1.2.6
1+
# suppress inspection "UnusedProperty"
2+
sbt.version=1.3.2

example/project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
4-
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.14.0")
3+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
4+
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.15.0-0.6")

0 commit comments

Comments
 (0)