-
Notifications
You must be signed in to change notification settings - Fork 3
/
aiur.config.js
69 lines (66 loc) · 1.53 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
module.exports = {
title: "Tabelle",
language: "en",
description: "Components for pretty filterable and sortable tables",
pages: {
"": "./README.md",
input: {
file: "./lib/components/input/doc.md",
data: "./lib/components/input/input.data.js"
},
select: {
file: "./lib/components/select/doc.md",
data: "./lib/components/select/select.data.js"
},
arrow: {
file: "./lib/components/arrow/doc.md",
data: "./lib/components/arrow/arrow.data.js"
},
header: {
file: "./lib/components/header/doc.md",
data: "./lib/components/header/header.data.js"
},
tabelle_search: {
file: "./lib/components/tabelle-search/doc.md"
},
tabelle: {
file: "./lib/components/tabelle/doc.md",
data: "./lib/components/tabelle/tabelle.data.js",
children: {
tabelle_search: {
file: "./lib/components/tabelle/search-doc.md",
data: "./lib/components/tabelle/tabelle.data.js"
}
}
},
tabelle_cljs: {
file: "./lib/components/tabelle-cljs/doc.md",
data: "./lib/components/tabelle-cljs/tabelle-cljs.data.js",
children: {
tabelle_search: {
file: "./lib/components/tabelle-cljs/search-doc.md",
data: "./lib/components/tabelle-cljs/tabelle-cljs.data.js"
}
}
}
},
snippetAssets: {
js: [
{
source: "./lib/index.js",
target: "./application.js"
},
{
source: "./lib/index-cljs.js",
target: "./application-cljs.js"
}
],
sass: [
{
source: "./lib/style/style.scss",
target: "./application.css"
}
]
},
watchDirs: ["./lib/components"]
};