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

Commit

Permalink
Next version
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Quiroz <carlos.m.quiroz@gmail.com>
  • Loading branch information
cquiroz committed Sep 4, 2020
1 parent c38572c commit ae80013
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes

## 0.6.4

* Update cats to 2.2.0
* Upgrade to react-common 0.9.8

## 0.6.3

* Upgrade react-semanticui to 1.2.0
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ lazy val demo =
webpackMonitoredDirectories += (resourceDirectory in Compile).value,
webpackResources := (baseDirectory.value / "webpack") * "*.js",
includeFilter in webpackMonitoredFiles := "*",
webpackExtraArgs := Seq("--progress"),
// webpackExtraArgs := Seq("--progress", "--display", "verbose"),
useYarn := true,
webpackBundlingMode in fastOptJS := BundlingMode.LibraryOnly(),
webpackBundlingMode in fullOptJS := BundlingMode.Application,
Expand Down Expand Up @@ -103,7 +101,8 @@ lazy val demo =
"react" -> reactJS,
"react-dom" -> reactJS,
"fomantic-ui-less" -> FUILess,
"create-react-context" -> "0.3.0",
"create-react-context" -> "0.3.0",
"prop-types" -> "15.7.2",
"react-semantic-toasts" -> Toasts
),
// don't publish the demo
Expand Down Expand Up @@ -132,12 +131,13 @@ lazy val facade =
// build.JSDOMNodeJSEnv.Config((Test / installJsdom).value)
// ),
// Compile tests to JS using fast-optimisation
// scalaJSStage in Test := FastOptStage,
scalaJSStage in Test := FastOptStage,
npmDependencies in Compile ++= Seq(
"react" -> reactJS,
"react-dom" -> reactJS,
"semantic-ui-react" -> reactSUI,
"react-semantic-toasts" -> Toasts
"react-semantic-toasts" -> Toasts,
"chokidar" -> "3.4.2"
),
libraryDependencies ++= Seq(
"com.github.japgolly.scalajs-react" %%% "core" % scalaJsReact,
Expand Down

0 comments on commit ae80013

Please sign in to comment.