Skip to content

Commit 971323c

Browse files
Fixed internal dependencies on -core and -dom modules (#4)
1 parent 3c14c3c commit 971323c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ lazy val router = project.in(file("router"))
146146
publishArtifact := true
147147
)
148148
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
149-
.dependsOn(dom, history)
149+
.dependsOn(core, history)
150150

151151
lazy val routerDom = project.in(file("router-dom"))
152152
.settings(commonSettings: _*)
@@ -175,7 +175,7 @@ lazy val redux = project.in(file("redux"))
175175
publishArtifact := true
176176
)
177177
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
178-
.dependsOn(dom)
178+
.dependsOn(core)
179179

180180
lazy val reduxDevTools = project.in(file("redux-devtools"))
181181
.settings(commonSettings: _*)
@@ -189,7 +189,7 @@ lazy val reduxDevTools = project.in(file("redux-devtools"))
189189
publishArtifact := true
190190
)
191191
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
192-
.dependsOn(dom, redux)
192+
.dependsOn(redux)
193193

194194
lazy val routerRedux = project.in(file("router-redux"))
195195
.settings(commonSettings: _*)
@@ -203,7 +203,7 @@ lazy val routerRedux = project.in(file("router-redux"))
203203
publishArtifact := true
204204
)
205205
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
206-
.dependsOn(dom, history, router, redux)
206+
.dependsOn(history, router, redux)
207207

208208
val exampleCommonSettings = commonSettings ++ Seq(
209209
name := "scalajs-reactjs-example",

0 commit comments

Comments
 (0)