Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Library upgrades #10

Merged
merged 1 commit into from
Sep 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: scala
scala:
- 2.12.3
- 2.12.6
jdk:
- oraclejdk8
# These directories are cached to S3 at the end of the build
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changes

## 0.3.3
## 0.4.0

* Upgraded to scala.js react 1.3.0

## 0.3.4

* Addeed method to create columns with flexGrow/flexShrink set to 0
* Make defaultRendererXXX functions public
Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val reactJS = "16.2.0"
val reactJS = "16.5.0"
val reactVirtualized = "9.20.1"
val scalaJsReact = "1.2.3"
val scalaJsReact = "1.3.0"

parallelExecution in (ThisBuild, Test) := false

Expand Down Expand Up @@ -33,8 +33,8 @@ lazy val demo =
webpackBundlingMode := BundlingMode.LibraryOnly(),
webpackDevServerExtraArgs := Seq("--inline"),
webpackConfigFile in fastOptJS := Some(baseDirectory.value / "dev.webpack.config.js"),
version in webpack := "4.8.1",
version in startWebpackDevServer := "3.1.4",
version in webpack := "4.19.1",
version in startWebpackDevServer := "3.1.8",
// don't publish the demo
publish := {},
publishLocal := {},
Expand All @@ -60,15 +60,15 @@ lazy val facade =
requiresDOM in Test := true,
// Use yarn as it is faster than npm
useYarn := true,
version in webpack := "4.16.1",
version in webpack := "4.19.1",
scalaJSUseMainModuleInitializer := false,
// Compile tests to JS using fast-optimisation
scalaJSStage in Test := FastOptStage,
libraryDependencies ++= Seq(
"com.github.japgolly.scalajs-react" %%% "core" % scalaJsReact,
"com.github.japgolly.scalajs-react" %%% "test" % scalaJsReact % "test",
"com.lihaoyi" %%% "utest" % "0.6.4" % Test,
"org.typelevel" %%% "cats-core" % "1.1.0" % Test
"com.lihaoyi" %%% "utest" % "0.6.5" % Test,
"org.typelevel" %%% "cats-core" % "1.4.0" % Test
),
webpackConfigFile in Test := Some(baseDirectory.value / "test.webpack.config.js"),
testFrameworks += new TestFramework("utest.runner.Framework")
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.1.5
sbt.version = 1.2.3
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.24")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")

addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.13.1")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2")

addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")