Skip to content

Commit

Permalink
js deps update (+sbt-revolver)
Browse files Browse the repository at this point in the history
  • Loading branch information
oen9 committed May 6, 2020
1 parent b2472f2 commit 8ffd245
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy val sharedSettings = Seq(
"io.circe" %%% "circe-generic" % Ver.circe,
"io.circe" %%% "circe-literal" % Ver.circe,
"com.softwaremill.quicklens" %%% "quicklens" % "1.5.0"
// waiting for scalajs-1.0.0 support
// waiting for scalajs-1 support
// "io.scalaland" %%% "chimney" % "0.5.1",
),
scalacOptions ++= Seq(
Expand Down Expand Up @@ -52,13 +52,13 @@ lazy val jsSettings = Seq(
"react-router-dom" -> "5.1.2",
"path-to-regexp" -> "6.1.0",
"bootstrap" -> "4.4.1",
"jquery" -> "3.4.1", // bug for 3.5.0 https://github.com/twbs/bootstrap/issues/30553
"jquery" -> "3.5.1",
"konva" -> "4.2.2",
"react-konva" -> "16.13.0-0",
"use-image" -> "1.0.5",
),
scalaJSUseMainModuleInitializer := true,
version.in(webpack) := "4.42.1",
version.in(webpack) := "4.43.0",
webpackBundlingMode := BundlingMode.Application,
webpackBundlingMode.in(fastOptJS) := BundlingMode.LibraryOnly(),
)
Expand Down Expand Up @@ -91,7 +91,7 @@ lazy val jvmSettings = Seq(
"org.reactormonk" %% "cryptobits" % "1.3",
"org.mindrot" % "jbcrypt" % "0.4",

"io.scalaland" %%% "chimney" % "0.5.1", // TODO remove from here after scalajs-1.0.0 support
"io.scalaland" %%% "chimney" % "0.5.1", // TODO remove from here after scalajs-1 support

"dev.zio" %% "zio-test" % Ver.zio % Test,
"dev.zio" %% "zio-test-sbt" % Ver.zio % Test,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"private": true,
"license": "UNLICENSED",
"dependencies": {
"react-dom": "16.13.0",
"react": "16.13.0"
"react-dom": "16.13.1",
"react": "16.13.1"
},
"devDependencies": {
"webpack": "4.41.6"
"webpack": "4.43.0"
}
}
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.17.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.1")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.15-2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.4")

0 comments on commit 8ffd245

Please sign in to comment.