Skip to content

Commit

Permalink
Fixed internal dependencies on -core and -dom modules (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktor-podzigun committed Aug 26, 2021
1 parent 3c14c3c commit 971323c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ lazy val router = project.in(file("router"))
publishArtifact := true
)
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
.dependsOn(dom, history)
.dependsOn(core, history)

lazy val routerDom = project.in(file("router-dom"))
.settings(commonSettings: _*)
Expand Down Expand Up @@ -175,7 +175,7 @@ lazy val redux = project.in(file("redux"))
publishArtifact := true
)
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
.dependsOn(dom)
.dependsOn(core)

lazy val reduxDevTools = project.in(file("redux-devtools"))
.settings(commonSettings: _*)
Expand All @@ -189,7 +189,7 @@ lazy val reduxDevTools = project.in(file("redux-devtools"))
publishArtifact := true
)
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
.dependsOn(dom, redux)
.dependsOn(redux)

lazy val routerRedux = project.in(file("router-redux"))
.settings(commonSettings: _*)
Expand All @@ -203,7 +203,7 @@ lazy val routerRedux = project.in(file("router-redux"))
publishArtifact := true
)
.enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
.dependsOn(dom, history, router, redux)
.dependsOn(history, router, redux)

val exampleCommonSettings = commonSettings ++ Seq(
name := "scalajs-reactjs-example",
Expand Down

0 comments on commit 971323c

Please sign in to comment.