forked from styleguidist/react-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
112 lines (111 loc) · 1.98 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const path = require('path');
module.exports = {
dev: true,
title: "Styleguide",
components: 'src/app/**/[A-Z]*.js',
defaultExample: true,
useCustomScss: false,
require: [
// require global main.scss file
path.join(__dirname, 'styles/core.scss'),
],
groups: {
documentation: {
title: 'Documentation',
pathRegExp: /docs/,
description: 'Documentation section',
includeStatic: true
},
core: {
title: 'Core components',
pathRegExp: /core/,
description: 'Core components section',
includeStatic: false
},
default: {
title: 'Components',
pathRegExp: /^((?!(core)).)*$/,
description: 'Components section',
includeStatic: false
}
},
groupsOptions: {
defaultGroup: 'documentation'
},
sections: [
{
name: 'Introduction',
content: 'docs/intro.md',
static: true
},
{
name: 'Documentation',
static: true,
sections: [
{
name: 'Installation',
static: true,
content: 'docs/install.md',
description: 'The description for the installation section'
},
{
name: 'Configuration',
static: true,
content: 'docs/config.md'
}
]
},
{
name: 'Components',
static: false,
sections: [
{
name: 'UI',
static: false,
components: [
'src/app/components/ui/**/[A-Z]*.js',
'src/app/core/components/ui/**/[A-Z]*.js',
]
},
{
name: 'Others',
static: false,
components: [
'src/app/components/others/**/[A-Z]*.js',
'src/app/core/components/others/**/[A-Z]*.js',
]
},
]
}
],
webpackConfig: {
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
{
test: /\.scss$/,
exclude: /node_modules/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'sass-loader',
},
],
}
],
},
},
};