-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
65 lines (63 loc) · 1.67 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
/* eslint-disable */
const path = require('path');
const glob = require('glob');
module.exports = {
title: 'Sberned EVA StyleGuides',
skipComponentsWithoutExample: true,
defaultExample: true,
components() {
return glob.sync(path.resolve(__dirname, 'src/components/common/**/*.js')).filter(function(module) {
return /\/[A-Z]\w*\.js$/.test(module);
});
},
serverPort: 5555,
updateWebpackConfig(webpackConfig) {
const dir = path.resolve(__dirname, 'src');
webpackConfig.entry.push(path.join(__dirname, 'src/static/bootstrap.min.css'));
webpackConfig.module.loaders.push(
{
test: /\.json$/,
include: path.dirname(require.resolve('dog-names/package.json')),
loader: 'json'
},
{
test: /\.(ttf|eot|woff(2)?)(\?[a-z0-9]+)?$/,
loader: 'file-loader?name=fonts/[hash].[ext]',
include: dir,
},
{
test: /\.jsx?$/,
include: dir,
loader: 'babel'
},
{
test: /\.(svg|png|jpe?g)$/,
loader: 'file?name=images/[hash].[ext]',
include: path.join(__dirname, 'src/components'),
},
{
test: /\.css$/,
loader: 'style!css',
include: dir
},
{
test: /\.styl$/,
loader: 'style!css?modules&localIdentName=[local]___[hash:base64:10]',
include: dir,
},
{
test: /\.styl$/,
loaders: ['postcss', 'stylus'],
include: dir,
},
{
test: /\.svg$/,
loader: `svg-sprite?${JSON.stringify({
name: '[name]_[hash]',
})}`,
include: path.join(__dirname, 'src/icons'),
}
);
return webpackConfig;
},
};