-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyleguide.config.js
149 lines (147 loc) · 4.84 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const webpack = require('webpack');
const pkg = require('./package.json');
const babelConfig = require('./babel.config');
const webpackConfig = {
mode: 'development',
devtool: 'cheap-module-eval-source-map',
devServer: {
disableHostCheck: true,
contentBase: path.resolve(__dirname, 'docs'),
},
entry: path.resolve(__dirname, 'src/index.js'),
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
// XXX: due to untranspiled code in styleguide's node_modules, it needs to include them
// https://github.com/styleguidist/react-styleguidist/blob/f14e8e7f403aa32045b9f61e4e4f1a7776146d8b/examples/ie11/styleguide.config.js#L4
exclude: /node_modules\/(?!(ansi-styles|strip-ansi|ansi-regex|react-dev-utils|chalk|regexpu-core|unicode-match-property-ecmascript|unicode-match-property-value-ecmascript|acorn-jsx)\/).*/,
options: babelConfig
},
{
test: /\.styl$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[local]---[hash:base64:5]',
},
importLoaders: 1,
localsConvention: 'camelCase',
}
},
'stylus-loader'
]
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
},
{
test: /\.(png|jpg|svg)$/,
loader: 'url-loader'
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff'
}
},
{
test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader'
}
]
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
NODE_ENV: JSON.stringify('production')
}
}),
new MiniCssExtractPlugin({
filename: '[name].css'
})
],
resolve: {
extensions: ['.js', '.json', '.jsx']
}
};
module.exports = {
title: `React Radio v${pkg.version}`,
sections: [
{
name: 'Radio Button',
sections: [
{
name: 'Uncontrolled',
content: path.resolve(__dirname, 'styleguide/examples/UncontrolledRadioButton.md'),
},
{
name: 'Controlled',
content: path.resolve(__dirname, 'styleguide/examples/ControlledRadioButton.md'),
},
],
},
{
name: 'Radio Group',
sections: [
{
name: 'Uncontrolled',
content: path.resolve(__dirname, 'styleguide/examples/UncontrolledRadioGroup.md'),
},
{
name: 'Controlled',
content: path.resolve(__dirname, 'styleguide/examples/ControlledRadioGroup.md'),
},
],
},
{
name: 'Components',
components: [
'RadioButton',
'RadioGroup',
].map(c => path.resolve(__dirname, `src/${c}.jsx`)),
usageMode: 'expand',
exampleMode: 'hide',
}
],
require: [
'@babel/polyfill',
'@trendmicro/react-form-control/dist/react-form-control.css',
'@trendmicro/react-grid-system/dist/react-grid-system.css',
path.resolve(__dirname, 'styleguide/setup.js'),
path.resolve(__dirname, 'styleguide/styles.css')
],
ribbon: {
url: pkg.homepage,
text: 'Fork me on GitHub'
},
serverPort: 8080,
exampleMode: 'collapse',
usageMode: 'expand',
showSidebar: true,
styleguideComponents: {
StyleGuideRenderer: path.join(__dirname, 'styleguide/components/StyleGuideRenderer.jsx'),
Wrapper: path.join(__dirname, 'styleguide/components/Wrapper.jsx'),
},
styleguideDir: 'docs/',
webpackConfig: webpackConfig
};