-
Notifications
You must be signed in to change notification settings - Fork 319
/
.eleventy.js
67 lines (54 loc) · 1.54 KB
/
.eleventy.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
const htmlmin = require('html-minifier');
const Terser = require('terser');
const { NODE_ENV } = process.env;
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({ static: '.' });
eleventyConfig.addFilter('jsmin', function (code) {
let minified = Terser.minify(code);
if (minified.error) {
console.log('Terser error: ', minified.error);
return code;
}
return minified.code;
});
eleventyConfig.addTransform('htmlmin', function (content, outputPath) {
if (outputPath.endsWith('.html')) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
});
return minified;
}
return content;
});
eleventyConfig.addNunjucksFilter('route', function (
slug,
{ listIsSortedBy }
) {
// in production the home dir is mapped to root
if (NODE_ENV === 'production' && slug === 'home') {
slug = '';
}
let route = slug.length ? `/${slug}/` : '/';
if (listIsSortedBy === 'addedAt') {
route += 'latest/';
}
return route;
});
eleventyConfig.addNunjucksFilter('prettyDate', function (dateString) {
const date = new Date(dateString);
const regex = /^(?<day>\w+?)\s(?<month>\w+?)\s(?<date>\w+?) (?<year>\d+?)$/;
const matched = date.toDateString().match(regex);
if (matched) {
const { month, year } = matched.groups;
return `${month} ${year}`;
}
return dateString;
});
return {
dir: {
input: 'site',
},
};
};