@@ -71,8 +71,6 @@ lazy val demo =
71
71
webpackMonitoredDirectories += (resourceDirectory in Compile ).value,
72
72
webpackResources := (baseDirectory.value / " webpack" ) * " *.js" ,
73
73
includeFilter in webpackMonitoredFiles := " *" ,
74
- webpackExtraArgs := Seq (" --progress" ),
75
- // webpackExtraArgs := Seq("--progress", "--display", "verbose"),
76
74
useYarn := true ,
77
75
webpackBundlingMode in fastOptJS := BundlingMode .LibraryOnly (),
78
76
webpackBundlingMode in fullOptJS := BundlingMode .Application ,
@@ -103,7 +101,8 @@ lazy val demo =
103
101
" react" -> reactJS,
104
102
" react-dom" -> reactJS,
105
103
" fomantic-ui-less" -> FUILess ,
106
- " create-react-context" -> " 0.3.0" ,
104
+ " create-react-context" -> " 0.3.0" ,
105
+ " prop-types" -> " 15.7.2" ,
107
106
" react-semantic-toasts" -> Toasts
108
107
),
109
108
// don't publish the demo
@@ -132,12 +131,13 @@ lazy val facade =
132
131
// build.JSDOMNodeJSEnv.Config((Test / installJsdom).value)
133
132
// ),
134
133
// Compile tests to JS using fast-optimisation
135
- // scalaJSStage in Test := FastOptStage,
134
+ scalaJSStage in Test := FastOptStage ,
136
135
npmDependencies in Compile ++= Seq (
137
136
" react" -> reactJS,
138
137
" react-dom" -> reactJS,
139
138
" semantic-ui-react" -> reactSUI,
140
- " react-semantic-toasts" -> Toasts
139
+ " react-semantic-toasts" -> Toasts ,
140
+ " chokidar" -> " 3.4.2"
141
141
),
142
142
libraryDependencies ++= Seq (
143
143
" com.github.japgolly.scalajs-react" %%% " core" % scalaJsReact,
0 commit comments