forked from arielsalminen/vue-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
92 lines (91 loc) · 2.08 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
const path = require("path");
const baseConfig = require("./build/webpack.base.conf.js");
const merge = require("webpack-merge");
module.exports = {
title: "Vue Design System",
theme: {
maxWidth: "100%",
sidebarWidth: 210,
color: {
link: "#2389ee",
linkHover: "#1960a7",
sidebarBackground: "#001123",
baseBackground: "#fff",
light: "#aaa"
},
fontFamily: {
base: ['"Fira Sans"', "Helvetica", "Arial", "sans-serif"],
monospace: ["Consolas", '"Liberation Mono"', "Menlo", "monospace"]
}
},
highlightTheme: "night",
styles: {
Logo: {
logo: {
color: "#fff"
}
}
},
assetsDir: path.join(__dirname, "static"),
showCode: true,
showUsage: true,
skipComponentsWithoutExample: false,
getComponentPathLine(componentPath) {
const name = path.basename(componentPath, ".vue");
const dir = path.dirname(componentPath);
return `import ${name} from '${dir}/${name}';`;
},
require: [
path.join(__dirname, "docs/styleguide.helper.js"),
path.join(__dirname, "docs/styleguide.styles.css")
],
sections: [
{
name: "Vue Design System",
content: "docs/introduction.md"
},
{
name: "Principles",
content: "docs/principles.md"
},
{
name: "Tokens",
content: "docs/tokens.md",
components: "docs/components/**/[A-Z]*.vue"
},
{
name: "Elements",
content: "docs/elements.md",
components: "src/elements/**/[A-Z]*.vue"
},
{
name: "Patterns",
content: "docs/patterns.md",
components: "src/patterns/**/[A-Z]*.vue"
},
{
name: "Templates",
content: "docs/templates.md",
components: "src/templates/**/[A-Z]*.vue"
}
],
template: "docs/styleguide.template.html",
ignore: [
"**/App.vue",
"**/__tests__/**",
"**/*.test.js",
"**/*.test.jsx",
"**/*.spec.js",
"**/*.spec.jsx"
],
webpackConfig: merge(baseConfig, {
module: {
rules: [
{
test: /\.css$/,
loader: "style-loader!css-loader"
}
]
}
})
};