generated from freeCodeCamp/template
-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
.eleventy.js
141 lines (113 loc) · 4.17 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
140
141
const { readFileSync, readdirSync, writeFileSync } = require('graceful-fs');
const { EleventyHtmlBasePlugin } = require('@11ty/eleventy');
const pluginRSS = require('@11ty/eleventy-plugin-rss');
const cssMin = require('./utils/transforms/css-min');
const jsMin = require('./utils/transforms/js-min');
const fullEscaper = require('./utils/full-escaper');
const translate = require('./utils/translate');
const {
imageShortcode,
featureImageShortcode
} = require('./utils/shortcodes/images');
const cacheBusterShortcode = require('./utils/shortcodes/cache-buster');
const createJSONLDShortcode = require('./utils/shortcodes/create-json-ld');
const {
publishedDateShortcode,
timeAgoShortcode,
buildDateFormatterShortcode,
fullYearShortcode,
toISOStringShortcode
} = require('./utils/shortcodes/dates');
const { currentLocale_i18n, eleventyEnv } = require('./config');
const sitePath = require('./utils/site-path');
module.exports = function (config) {
// Minify inline CSS
config.addFilter('cssMin', cssMin);
// Minify inline JS
config.addNunjucksAsyncFilter('jsMin', jsMin);
// Empty manifest to load new versions of cached files
// for hot reloading
config.on('beforeBuild', () => {
manifest = {};
});
config.on('afterBuild', () => {
// Minify CSS
const cssDir = './dist/assets/css';
const cssFiles = readdirSync(cssDir);
cssFiles.forEach(filename => {
const fullPath = `${cssDir}/${filename}`;
const content = readFileSync(fullPath);
writeFileSync(fullPath, cssMin(content));
});
// Write translated locales for the current build language to the assets directory
// as a workaround to display those strings in search-results.js instead of with the
// translation shortcode
const currLocaleTranslationsPath = `./config/i18n/locales/${currentLocale_i18n}/translations.json`;
const translationsObj = JSON.parse(
readFileSync(currLocaleTranslationsPath, { encoding: 'utf-8' })
);
const translatedLocales =
translationsObj['original-author-translator'].locales;
writeFileSync(
'./dist/assets/translated-locales.json',
JSON.stringify(translatedLocales)
);
});
config.addPlugin(pluginRSS);
config.addNunjucksShortcode('image', imageShortcode);
config.addNunjucksShortcode('featureImage', featureImageShortcode);
config.addNunjucksShortcode('cacheBuster', cacheBusterShortcode);
config.addNunjucksShortcode('t', translate);
config.addNunjucksShortcode('fullEscaper', fullEscaper);
config.addNunjucksAsyncShortcode('createJSONLD', createJSONLDShortcode);
// Date and time shortcodes and filters
config.addNunjucksShortcode('publishedDate', publishedDateShortcode);
config.addNunjucksShortcode('timeAgo', timeAgoShortcode);
config.addNunjucksShortcode(
'buildDateFormatter',
buildDateFormatterShortcode
);
config.addNunjucksShortcode('fullYear', fullYearShortcode);
config.addNunjucksShortcode('toISOString', toISOStringShortcode);
// Check for next page before showing 'Load More Articles' button
config.addFilter('nextPageExists', href => {
const nextPageRegExp = /\/\d+\/$/g;
return nextPageRegExp.test(href);
});
// Check if the canonical URL should have Google Ad Manager
config.addFilter('shouldCanonicalHaveGAM', canonical => {
// Don't add Google Ad Manager to localhost
if (!canonical || canonical.startsWith('http://localhost:')) {
return false;
}
return true;
});
// Don't ignore the same files ignored in the git repo
config.setUseGitIgnore(false);
if (eleventyEnv === 'ci') {
config.addPassthroughCopy({
'./cypress/fixtures/mock-search-hits.json':
'./assets/mock-search-hits.json'
});
}
// Use the new Base plugin to replace the old url filter method
// so we can deploy in a different directory
config.addPlugin(EleventyHtmlBasePlugin, {
baseHref: sitePath,
filters: {
base: 'htmlBaseUrl'
}
});
// Eleventy configuration
return {
dir: {
input: 'src',
output: 'dist'
},
// Files read by Eleventy, add as needed
templateFormats: ['css', 'njk'],
htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk',
pathPrefix: sitePath
};
};