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

Commit ae80013

Browse files
committed
Next version
Signed-off-by: Carlos Quiroz <carlos.m.quiroz@gmail.com>
1 parent c38572c commit ae80013

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes
22

3+
## 0.6.4
4+
5+
* Update cats to 2.2.0
6+
* Upgrade to react-common 0.9.8
7+
38
## 0.6.3
49

510
* Upgrade react-semanticui to 1.2.0

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ lazy val demo =
7171
webpackMonitoredDirectories += (resourceDirectory in Compile).value,
7272
webpackResources := (baseDirectory.value / "webpack") * "*.js",
7373
includeFilter in webpackMonitoredFiles := "*",
74-
webpackExtraArgs := Seq("--progress"),
75-
// webpackExtraArgs := Seq("--progress", "--display", "verbose"),
7674
useYarn := true,
7775
webpackBundlingMode in fastOptJS := BundlingMode.LibraryOnly(),
7876
webpackBundlingMode in fullOptJS := BundlingMode.Application,
@@ -103,7 +101,8 @@ lazy val demo =
103101
"react" -> reactJS,
104102
"react-dom" -> reactJS,
105103
"fomantic-ui-less" -> FUILess,
106-
"create-react-context" -> "0.3.0",
104+
"create-react-context" -> "0.3.0",
105+
"prop-types" -> "15.7.2",
107106
"react-semantic-toasts" -> Toasts
108107
),
109108
// don't publish the demo
@@ -132,12 +131,13 @@ lazy val facade =
132131
// build.JSDOMNodeJSEnv.Config((Test / installJsdom).value)
133132
// ),
134133
// Compile tests to JS using fast-optimisation
135-
// scalaJSStage in Test := FastOptStage,
134+
scalaJSStage in Test := FastOptStage,
136135
npmDependencies in Compile ++= Seq(
137136
"react" -> reactJS,
138137
"react-dom" -> reactJS,
139138
"semantic-ui-react" -> reactSUI,
140-
"react-semantic-toasts" -> Toasts
139+
"react-semantic-toasts" -> Toasts,
140+
"chokidar" -> "3.4.2"
141141
),
142142
libraryDependencies ++= Seq(
143143
"com.github.japgolly.scalajs-react" %%% "core" % scalaJsReact,

0 commit comments

Comments
 (0)