-
Notifications
You must be signed in to change notification settings - Fork 49
/
magicbook.json
54 lines (54 loc) · 1.38 KB
/
magicbook.json
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
{
"title": "Programming Design Systems",
"author": "Rune Madsen",
"twitter": "https://twitter.com/runemadsen",
"permalink": ":parts/:title/index.html",
"addPlugins": ["magicbook-codesplit", "magicbook-webpack", "./plugins/p5"],
"files": [
"content/index.html",
"content/introduction.html",
"content/what-is-a-design-system.html",
{
"label": "Shape",
"files": [
"content/shape/figure-and-ground.html",
"content/shape/basic-shapes.html",
"content/shape/custom-shapes.html",
"content/shape/procedural-shapes.html"
]
},
{
"label": "Color",
"files": [
"content/color/a-short-history-of-color-theory.html",
"content/color/color-models-and-color-spaces.html",
"content/color/perceptually-uniform-color-spaces.html",
"content/color/color-schemes.html"
]
},
{
"label": "Layout",
"files": [
"content/layout/a-short-history-of-geometric-composition.html",
"content/layout/geometric-composition.html"
]
},
"content/more-to-come.html"
],
"webpack": "webpack.config.js",
"stylesheets": {
"bundle": true,
"compress": true,
"digest": true,
"files": ["stylesheets/html.scss"]
},
"builds": [
{
"format": "html"
}
],
"codesplit": {
"includes": "examples"
},
"layout": "layouts/default.html"
}