-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.config.js
96 lines (96 loc) · 2.21 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
module.exports = {
webpackConfig: {
module: {
rules: [
{
loader: "babel-loader",
test: /\.(js|jsx)$/,
query: {
plugins: [
["@babel/plugin-transform-modules-commonjs", {
allowTopLevelThis: false
}]
],
presets: [["@babel/env", { targets: { node: 6 } }]]
}
},
{
test: /\.less$/,
exclude: /node_modules/,
use: ["style-loader", "css-loader", "less-loader"]
},
{
test: /\.svg$/,
exclude: /node_modules/,
loader: "svg-react-loader"
},
{
test: /\.(png|jpe?g|gif)$/i,
exclude: /node_modules/,
use: ["file-loader"]
}
]
}
},
sections: [
{
name: "Icecream UI library",
content: "examples/introduction.md"
},
{
name: "Tip",
content: "examples/tip.md",
components: "/components/Tip/*.jsx"
},
{
name: "Loading",
content: "examples/loading.md",
components: "/components/Loading/*.jsx"
},
{
name: "IconCard",
content: "examples/IconCard.md",
components: "/components/IconCard/*.jsx"
},
{
name: "Modal",
content: "examples/modal.md",
components: "/components/Modal/*.jsx"
},
{
name: "Button",
content: "examples/button.md",
components: "/components/Button/*.jsx"
},
{
name: "Alert",
content: "examples/alert.md",
components: "/components/Alert/*.jsx"
},
{
name: "Header",
content: "examples/header.md",
components: "/components/Header/*.jsx"
}, {
name: "GradientBar",
content: "examples/components.md",
components: "/components/GradientBar/*.jsx",
exampleMode: "expand",
usageMode: "expand"
},
{
name: "Card",
content: "examples/card.md",
components: "/components/Card/*.jsx",
exampleMode: "expand",
usageMode: "expand"
},
{
name: "Footer",
content: "examples/footer.md",
components: "/components/Footer/*.jsx",
exampleMode: "expand",
usageMode: "expand"
}
]
};