-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eleventy.js
139 lines (112 loc) · 4.28 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
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
136
137
138
139
const fs = require('fs');
const pluginRss = require('@11ty/eleventy-plugin-rss');
const htmlmin = require('html-minifier');
const sassWatch = require('./_includes/sass-watch');
const filter = require('./_includes/filter');
const scAvatar = require('./_includes/shortcodes/avatar');
const scResponsiveImage = require('./_includes/shortcodes/responsive-image');
const scSocialSvg = require('./_includes/shortcodes/social-svg');
const scVideoPlayer = require('./_includes/shortcodes/video-player');
const pscMeetupDetails = require('./_includes/shortcodes/meetup-details');
/**
* Add date properties to collections.
*
* @param {object} posts Collection to add date properties to.
* @return {object} Augmented posts collection.
*/
const addFileDates = (posts) => posts.map((post) => {
if (!(post && post.inputPath)) return post;
const stat = fs.statSync(post.inputPath) || {};
const newPost = post;
newPost.dateCreated = stat.birthtime;
newPost.dateModified = stat.mtime;
return newPost;
});
module.exports = (eleventyConfig) => {
// Watch Sass directory for styling changes.
// Works only in dev mode. Though it throws and error and then continues on.
if (process.env.ELEVENTY_ENV === 'dev') {
sassWatch('./_sass/_main.scss', './_site/assets/css/main.css');
}
// PASSTHRU: Copy the `assets` directory to the compiled site folder
eleventyConfig.addPassthroughCopy('assets');
eleventyConfig.addPassthroughCopy('robots.txt');
eleventyConfig.addPassthroughCopy('CNAME');
// COLLECTION: Create meetup collection.
eleventyConfig.addCollection('meetups', (collection) => {
const posts = collection.getFilteredByGlob('./_meetups/**');
return addFileDates(posts);
});
// COLLECTION: Create post collection.
eleventyConfig.addCollection('posts', (collection) => {
const posts = collection.getFilteredByGlob(['./_meetups/**', './_posts/**']);
return addFileDates(posts);
});
// FILTER: Convert page.date directly to 'YYYY/MM/DD' slug.
eleventyConfig.addLiquidFilter('dateSlug', filter.dateSlug);
// FILTER: Reverse array without mutating original.
eleventyConfig.addFilter('flip', filter.flip);
// FILTER: Run content thru Markdown-it.
eleventyConfig.addFilter('markdown', filter.markdown);
// FILTER: Replace text with regex capabilities.
eleventyConfig.addFilter('regexReplace', filter.regexReplace);
// SHORTCODE: Resize and cache images.
eleventyConfig.addLiquidShortcode('avatar', scAvatar);
// SHORTCODE: Generate responsive image.
eleventyConfig.addLiquidShortcode('responsiveImage', scResponsiveImage);
// SHORTCODE: Add social icon SVG block.
eleventyConfig.addLiquidShortcode('socialSvg', scSocialSvg);
// SHORTCODE: Embed video players for event replay.
eleventyConfig.addShortcode('videoPlayer', scVideoPlayer);
// SHORTCODE: Format meeting details message block.
eleventyConfig.addPairedShortcode('meetupDetails', pscMeetupDetails);
// PLUGIN: RSS feed
eleventyConfig.addPlugin(pluginRss);
// FILTER: Atom date format
eleventyConfig.addLiquidFilter('dateToRfc3339', pluginRss.dateToRfc3339);
// TRANSFORM: minify HTML
eleventyConfig.addTransform('htmlmin', (content, outputPath) => {
if (typeof outputPath === 'string' && outputPath.endsWith('.html')) {
const minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
minifyCSS: true,
minifyJS: true,
});
return minified;
}
return content;
});
// BROWSERSYNC: add ability to see 404.html in dev mode
eleventyConfig.setBrowserSyncConfig({
callbacks: {
ready(err, bs) {
bs.addMiddleware('*', (req, res) => {
const content404 = fs.readFileSync('_site/404.html');
// Provides the 404 content without redirect.
res.write(content404);
// Add 404 http status code in request header.
// res.writeHead(404, { "Content-Type": "text/html" });
res.writeHead(404);
res.end();
});
},
},
});
return {
dir: {
input: './',
output: './_site',
layouts: './_layouts',
},
templateFormats: [
'liquid',
'njk',
'md',
'html',
],
htmlTemplateEngine: 'liquid',
dataTemplateEngine: 'liquid',
};
};