-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy path.eleventy.js
More file actions
148 lines (119 loc) · 4.31 KB
/
.eleventy.js
File metadata and controls
148 lines (119 loc) · 4.31 KB
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
142
143
144
145
146
147
148
import gracefulFS from 'graceful-fs';
import { EleventyHtmlBasePlugin } from '@11ty/eleventy';
import pluginRSS from '@11ty/eleventy-plugin-rss';
import cssMin from './utils/transforms/css-min.js';
import jsMin from './utils/transforms/js-min.js';
import { fullEscaper } from './utils/full-escaper.js';
import { translate } from './utils/translate.js';
import {
imageShortcode,
featureImageShortcode
} from './utils/shortcodes/images.js';
import {
cacheBusterShortcode,
manifest
} from './utils/shortcodes/cache-buster.js';
import { createJSONLDShortcode } from './utils/shortcodes/create-json-ld.js';
import {
publishedDateShortcode,
timeAgoShortcode,
buildDateFormatterShortcode,
fullYearShortcode,
toISOStringShortcode
} from './utils/shortcodes/dates.js';
import { sitePath } from './utils/site-path.js';
import { config } from './config/index.js';
const { readFileSync, readdirSync, writeFileSync } = gracefulFS;
const { currentLocale_i18n, eleventyEnv } = config;
export default 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
// (styling, JS, and so on) for hot reloading
config.on('beforeBuild', () => {
for (const prop in manifest) {
if (Object.hasOwn(manifest, prop)) {
delete manifest[prop];
}
}
});
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
});
// Eleventy configuration
return {
dir: {
input: 'src',
output: 'dist'
},
// Files read by Eleventy, add as needed
templateFormats: ['css', 'njk'],
htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk',
pathPrefix: sitePath
};
}