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

Commit 42d3ef8

Browse files
committed
Updated scalajs-react version
1 parent 8b388ce commit 42d3ef8

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

build.sbt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
val reactJS = "15.6.1"
22
val reactVirtualized = "9.12.0"
3-
val scalaJsReact = "1.1.0"
3+
val scalaJsReact = "1.1.1"
44

55
parallelExecution in (ThisBuild, Test) := false
66

77
val `scalajs-react-virtualized` =
88
project.in(file("."))
9+
.settings(commonSettings: _*)
910
.aggregate(facade, demo)
11+
.settings(
12+
name := "root",
13+
// No, SBT, we don't want any artifacts for root.
14+
// No, not even an empty jar.
15+
publish := {},
16+
publishLocal := {},
17+
publishArtifact := false,
18+
Keys.`package` := file(""))
19+
1020

1121
lazy val demo =
1222
project.in(file("demo"))
@@ -43,7 +53,7 @@ lazy val facade =
4353

4454
lazy val commonSettings = Seq(
4555
scalaVersion := "2.12.4",
46-
version := "0.0.1",
56+
version := "0.0.2-SNAPSHOT",
4757
organization := "io.github.cquiroz",
4858
description := "scala.js facade for react-virtualized",
4959
homepage := Some(url("https://github.com/cquiroz/scalajs-react-virtualized")),

0 commit comments

Comments
 (0)