forked from reiniergs/react-prismic-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleguide.config.js
77 lines (76 loc) · 2.39 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
/* eslint-disable */
const path = require('path');
const withRainbowStyles = require('react-rainbow-styleguide');
const version = require('./package.json').version;
module.exports = withRainbowStyles({
version,
title: 'react-prismic-cms',
ignore: ['**/__tests__/**', '/node_modules/**'],
require: [
path.resolve(__dirname, 'src/library/setup.js'),
],
skipComponentsWithoutExample: true,
pagePerSection: true,
assetsDir: 'public',
ribbon: { url: 'https://github.com/reiniergs/react-prismic-cms' },
template: {
favicon: 'https://react-prismic-cms.firebaseapp.com/favicon.ico',
head: {
meta: [
{
name: 'robots',
content: 'index,follow'
},
{
name: 'description',
content: 'Set of declarative component to query content published in the headless CMS prismic.io'
},
{
name: 'keywords',
content: 'react, prismic, cms, content, components, library'
},
{
property: 'og:title',
content: 'React Prismic CMS'
},
{
property: 'og:description',
content: 'Set of declarative component to query content published in the headless CMS prismic.io'
},
{
property: 'og:image',
content: 'https://react-rainbow.firebaseapp.com/share-image.png'
}
]
},
},
sections: [
{
name: 'Getting Started',
sectionDepth: 1,
content: 'docs/overview.md',
sections: [
{
name: 'Overview',
content: 'docs/overview.md',
},
{
name: 'Usage',
content: 'docs/usage.md',
},
],
},
{
name: 'Query Components',
components: 'src/components/**/index.js',
sectionDepth: 1,
usageMode: 'expand',
},
{
name: 'Docs Components',
components: 'src/library/**/index.js',
sectionDepth: 1,
usageMode: 'expand',
},
],
});