-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuxpin.config.js
35 lines (34 loc) · 922 Bytes
/
uxpin.config.js
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
34
35
module.exports = {
components: {
categories: [
{
name: "Basic Components",
include: [
"src/components/Image/Image.js",
"src/components/Text/Text.js",
"src/components/TextInput/TextInput.js",
"src/components/View/View.js",
"src/components/ScrollView/ScrollView.js",
],
},
{
name: "User Interface",
include: [
"src/components/Button/Button.js",
"src/components/Switch/Switch.js",
],
},
{
name: "Others",
include: [
"src/components/ActivityIndicator/ActivityIndicator.js",
"src/components/ImageBackground/ImageBackground.js",
],
},
],
wrapper: "src/components/UXPinWrapper/UXPinWrapper.js",
webpackConfig: "uxpin.webpack.config.js",
},
name: "react native merge",
settings: { useUXPinProps: true },
};