-
Notifications
You must be signed in to change notification settings - Fork 0
/
aiur.config.js
135 lines (126 loc) · 5.16 KB
/
aiur.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
module.exports = {
title: "Software Creators' Masterclass Style Guide",
language: "en",
description: "Styleguide Software Creators' Masterclass",
meta: {
robots: "noindex",
},
pages: {
"": "./lib/documentation/README.md",
basics: {
file: "./lib/documentation/BASICS.md",
children: {
breakpoints: "./lib/documentation/breakpoints.md",
colors: "./lib/documentation/colors.md",
spacers: "./lib/documentation/spacers.md",
},
},
views: {
file: "./lib/documentation/VIEWS.md",
children: {
about_us: "./lib/views/about/about.md",
contact: "./lib/views/contact/contact.md",
customer_profile_page: "./lib/views/customer-pages/customer-profile-page/customer-profile-page.md",
customer_profile_edit_page: "./lib/views/customer-pages/customer-profile-edit-page/customer-profile-edit-page.md",
customer_trainings_overview_page: "./lib/views/customer-pages/customer-trainings-overview-page/customer-trainings-overview-page.md",
customer_trainings_detail_page: "./lib/views/customer-pages/customer-trainings-detail-page/customer-trainings-detail-page.md",
home: "./lib/views/home/home.md",
home_test: "./lib/views/home/home_test.md",
isaqb: "./lib/views/isaqb/isaqb.md",
login_page: "./lib/views/login_page/login_page.md",
login_page_success: "./lib/views/login_page_success/login_page_success.md",
module_kit: "./lib/views/module_kit/module_kit.md",
news: "./lib/views/news/news.md",
news_detail: "./lib/views/news/news_detail.md",
prices: "./lib/views/prices/prices.md",
privacy: "./lib/views/privacy/privacy.md",
site_notice: "./lib/views/site_notice/site_notice.md",
trainings_overview: "./lib/views/trainings_pages/trainings_overview/trainings_overview.md",
trainings_cluster: "./lib/views//trainings_pages/trainings_cluster/trainings_cluster.md",
trainings_dates: "./lib/views//trainings_pages/trainings_dates/trainings_dates.md",
trainings_detail: "./lib/views/trainings_pages//trainings_detail/trainings_detail.md",
trainings_detail_isaqb: "./lib/views//trainings_pages/trainings_detail/trainings_detail_isaqb.md",
trainings_detail_power: "./lib/views//trainings_pages/trainings_detail/trainings_detail_power.md",
trainer_overview: "./lib/views/trainer/trainer_overview.md",
trainer_detail: "./lib/views/trainer/trainer_detail.md",
trainer_trainings_overview: "./lib/views/trainer_pages/trainer_trainings_overview_page/trainer_trainings_overview_page.md",
trainer_trainings_detail: "./lib/views/trainer_pages/trainer_trainings_detail_page/trainer_trainings_detail_page.md",
},
},
blueprints: {
file: "./lib/documentation/BLUEPRINTS.md",
children: {
example_layout_layout: "./lib/blueprints/example-layout/example-layout.md",
},
},
organisms: {
file: "./lib/documentation/ORGANISMS.md",
children: {
login_form: "./lib/components/login-form/login-form.md",
footer: "./lib/components/footer/footer.md",
header: "./lib/components/header/header.md",
hero: "./lib/components/hero/hero.md",
form: "./lib/components/form/form.md",
module_kit: "./lib/components/module_kit/module-kit.md",
navbar: "./lib/components/navbar/navbar.md",
},
},
molecules: {
file: "./lib/documentation/MOLECULES.md",
children: {
alert: "./lib/components/alert/alert.md",
announcement: "./lib/components/announcement/announcement.md",
breadcrumb: "./lib/components/breadcrumb/breadcrumb.md",
cards: "./lib/components/cards/cards.md",
event_stripe: "./lib/components/event-stripe/event-stripe.md",
filter_dropdown: "./lib/components/filter-dropdown/filter-dropdown.md",
offer_box: "./lib/components/offer-box/offer-box.md",
quote: "./lib/components/quote/quote.md",
rating: "./lib/components/rating/rating.md",
testimonial: "./lib/components/testimonial/testimonial.md",
},
},
atoms: {
file: "./lib/documentation/ATOMS.md",
children: {
buttons: "./lib/components/buttons/buttons.md",
headings: "./lib/components/headings/headings.md",
icons: "./lib/components/icons/icons.md",
link: "./lib/components/link/link.md",
status: "./lib/components/status/status.md",
table: "./lib/components/table/table.md",
text: "./lib/components/text/text.md",
},
},
},
// Don't edit the following lines
snippetAssets: {
js: [
{
source: "./lib/assets/javascripts/application.js",
target: "./application.js",
},
],
sass: [
{
source: "./lib/assets/stylesheets/application.scss",
target: "./application.css",
},
{
source: "./lib/assets/stylesheets/styleguide.scss",
target: "./styleguide.css",
},
],
static: [
{
source: "./lib/assets/images",
target: "./images",
},
{
source: "./lib/assets/fonts",
target: "./fonts",
},
],
},
watchDirs: ["./lib"],
};