-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
36 lines (36 loc) · 1.05 KB
/
styleguide.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
36
module.exports = {
sections: [
{
name: 'Components',
components: 'src/components/**/*.js'
},
{
name: 'Screens',
description:'This section contains all screens and their specific components.',
sections: [
{
name: 'components',
components: 'src/screens/components/**/*.js'
},
{
name: 'Contacts',
components: 'src/screens/Contacts/**/*.js'
},
{
name: 'CreateContact',
components: 'src/screens/CreateContact/**/*.js'
},
{
name: 'UpdateContact',
components: 'src/screens/UpdateContact/**/*.js'
}
],
sectionDepth: 1
}
],
ignore: ['**/container.js', '**/components/index.js'],
pagePerSection: true,
template: {
favicon: 'public/favicon.ico'
}
};