-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
33 lines (31 loc) · 1.16 KB
/
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
32
33
import definitions._
import scommons.sbtplugin.project.CommonModule
import scommons.sbtplugin.project.CommonModule.ideExcludedDirectories
lazy val `scommons-react-native` = (project in file("."))
.settings(CommonModule.settings: _*)
.settings(ReactNativeModule.settings: _*)
.settings(
publish / skip := true,
publish := ((): Unit),
publishLocal := ((): Unit),
publishM2 := ((): Unit)
)
.settings(
ideExcludedDirectories += baseDirectory.value / "docs" / "_site"
)
.aggregate(
`scommons-react-native-core`,
`scommons-react-native-test`,
`scommons-react-native-community`,
`scommons-react-navigation`,
`scommons-expo`,
`scommons-react-native-ui`,
`scommons-react-native-showcase`
)
lazy val `scommons-react-native-core` = ReactNativeCore.definition
lazy val `scommons-react-native-test` = ReactNativeTest.definition
lazy val `scommons-react-native-community` = ReactNativeCommunity.definition
lazy val `scommons-react-navigation` = ReactNavigation.definition
lazy val `scommons-expo` = Expo.definition
lazy val `scommons-react-native-ui` = ReactNativeUi.definition
lazy val `scommons-react-native-showcase` = ReactNativeShowcase.definition