forked from scommons/scommons-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (29 loc) · 999 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import definitions._
import scommons.sbtplugin.project.CommonModule
import scommons.sbtplugin.project.CommonModule.ideExcludedDirectories
lazy val `scommons-react` = (project in file("."))
.settings(CommonModule.settings: _*)
.settings(ReactModule.settings: _*)
.settings(
skip in publish := true,
publish := ((): Unit),
publishLocal := ((): Unit),
publishM2 := ((): Unit)
)
.settings(
ideExcludedDirectories += baseDirectory.value / "docs" / "_site"
)
.aggregate(
`scommons-react-core`,
`scommons-react-dom`,
`scommons-react-redux`,
`scommons-react-test`,
`scommons-react-test-dom`,
`scommons-react-showcase`
)
lazy val `scommons-react-core` = ReactCore.definition
lazy val `scommons-react-dom` = ReactDom.definition
lazy val `scommons-react-redux` = ReactRedux.definition
lazy val `scommons-react-test` = ReactTest.definition
lazy val `scommons-react-test-dom` = ReactTestDom.definition
lazy val `scommons-react-showcase` = ReactShowcase.definition