-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
57 lines (48 loc) · 1.14 KB
/
index.ts
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
/// <reference path="index.d.ts" />
import Metalsmith = require('metalsmith');
import discoverPartials = require('metalsmith-discover-partials');
import layouts = require('metalsmith-layouts');
import getProcessedData from './skills';
import './helpers';
new Metalsmith(__dirname)
.source('./src')
.destination('./build')
.clean(false)
.use(async (files, _, done) => {
const {root, categories, skills} = await getProcessedData();
files[`index.html`] = {
root,
contents: '',
layout: 'index.hbs',
};
files[`admin.html`] = {
root,
contents: '',
layout: 'admin.hbs',
};
files[`graph.html`] = {
skills,
contents: '',
layout: 'graph.hbs',
};
categories.forEach(category => {
files[`${category.slug}.html`] = {
category,
contents: '',
layout: 'category.hbs',
};
});
skills.forEach(skill => {
files[`${skill.slug}.html`] = {
skill,
contents: '',
layout: 'skill.hbs',
};
});
done();
})
.use(discoverPartials())
.use(layouts())
.build(err => {
if (err) throw err;
});