forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
executable file
·350 lines (316 loc) · 10.6 KB
/
build.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#! /usr/bin/env node
'use strict';
// BUILD.JS: This file is responsible for building static HTML pages
const fs = require('fs');
const gracefulFs = require('graceful-fs');
// This is needed at least on Windows to prevent the `EMFILE: too many open files` error
// https://github.com/isaacs/node-graceful-fs#global-patching
gracefulFs.gracefulify(fs);
const path = require('path');
const Metalsmith = require('metalsmith');
const collections = require('metalsmith-collections');
const feed = require('metalsmith-feed');
const layouts = require('metalsmith-layouts');
const markdown = require('@metalsmith/markdown');
const permalinks = require('@metalsmith/permalinks');
const pagination = require('metalsmith-yearly-pagination');
const defaultsDeep = require('lodash.defaultsdeep');
const autoprefixer = require('autoprefixer');
const { marked } = require('marked');
const postcss = require('postcss');
const sass = require('sass');
const junk = require('junk');
const semver = require('semver');
const replace = require('metalsmith-one-replace');
const fsExtra = require('fs-extra');
const githubLinks = require('./scripts/plugins/githubLinks');
const navigation = require('./scripts/plugins/navigation');
const anchorMarkdownHeadings = require('./scripts/plugins/anchor-markdown-headings');
const loadVersions = require('./scripts/load-versions');
const latestVersion = require('./scripts/helpers/latestversion');
const withPreserveLocale = require('./scripts/plugins/withPreserveLocale');
const scriptReg = require('./scripts/plugins/scriptReg');
const hbsReg = require('./scripts/plugins/hbsReg');
// Set the default language, also functions as a fallback for properties which
// are not defined in the given language.
const DEFAULT_LANG = 'en';
// The history links of nodejs versions at doc/index.md
const nodejsVersionsContent = fs
.readFileSync('./source/nodejsVersions.md')
.toString();
// Set up the Markdown renderer that we'll use for our Metalsmith build process.
const renderer = new marked.Renderer();
renderer.heading = anchorMarkdownHeadings;
const markedOptions = {
renderer
};
// We are setting the output from `latestVersion` module here for future use.
// available props `latestVersionInfo` are `current` and `lts`
let latestVersionInfo = {};
// This function imports a given language file and uses the default language set
// in DEFAULT_LANG as a fallback to prevent any strings that aren't filled out
// from appearing as blank.
function i18nJSON(lang) {
const defaultJSON = require(`./locale/${DEFAULT_LANG}/site.json`);
const templateJSON = require(`./locale/${lang}/site.json`);
return defaultsDeep({}, templateJSON, defaultJSON);
}
// This function imports language file for each given locale in array 'localesList'
// and based on it generating locales data, which includes full language name, english language name, locale and link
function generateLocalesData(localesList) {
return localesList.map((localeEl) => {
const {
language,
languageEnglishVersion,
locale,
url
} = require(`./locale/${localeEl}/site.json`);
return { language, locale, url, languageEnglishVersion };
});
}
// This is the function where the actual magic happens. This contains the main
// Metalsmith build cycle used for building a locale subsite, such as the
// english one.
function buildLocale(source, locale, opts) {
console.log(`[metalsmith] build/${locale} started`);
const labelForBuild = `[metalsmith] build/${locale} finished`;
console.time(labelForBuild);
const metalsmith = Metalsmith(__dirname);
metalsmith
// Sets global metadata imported from the locale's respective site.json.
.metadata({
site: i18nJSON(locale),
project: source.project,
locales: opts.localesData
})
// Sets the build source as the locale folder.
.source(path.join(__dirname, 'locale', locale))
// site.json files aren't needed in the output dir
.ignore('site.json')
.use(withPreserveLocale(opts && opts.preserveLocale))
// Extracts the main menu and sub-menu links form locale's site.json and
// adds them to the metadata. This data is used in the navigation template
.use(navigation(source.project.latestVersions))
// Defines the blog post/guide collections used to internally group them for
// easier future handling and feed generation.
.use(
collections({
blog: {
pattern: 'blog/**/*.md',
sortBy: 'date',
reverse: true,
refer: false
},
blogReleases: {
pattern: 'blog/release/*.md',
sortBy: 'date',
reverse: true,
refer: false
},
blogVulnerability: {
pattern: 'blog/vulnerability/*.md',
sortBy: 'date',
reverse: true,
refer: false
},
knowledgeBase: {
pattern: 'knowledge/**/*.md',
refer: false
},
guides: {
pattern: 'docs/guides/!(index).md'
}
})
)
.use(
pagination({
path: 'blog/year',
iteratee: (post, idx) => ({
post
})
})
)
.use(
replace({
actions: [
{
type: 'var',
varValues: {
currentVersion: `latest-${latestVersionInfo.lts.nodeMajor}`,
nodeVersionLinks: nodejsVersionsContent
}
}
]
})
)
.use(markdown(markedOptions))
// Set pretty permalinks, we don't want .html suffixes everywhere.
.use(
permalinks({
relative: false
})
)
// Generates the feed XML files from their respective collections which were
// defined earlier on.
.use(
feed({
collection: 'blog',
destination: 'feed/blog.xml',
title: 'Node.js Blog'
})
)
.use(
feed({
collection: 'blogReleases',
destination: 'feed/releases.xml',
title: 'Node.js Blog: Releases'
})
)
.use(
feed({
collection: 'blogVulnerability',
destination: 'feed/vulnerability.xml',
title: 'Node.js Blog: Vulnerability Reports'
})
)
// Finally, this compiles the rest of the layouts present in ./layouts.
// They're language-agnostic, but have to be regenerated for every locale
// anyways.
.use(hbsReg())
.use(scriptReg())
.use(layouts())
.use(githubLinks({ locale, site: i18nJSON(locale) }))
// Pipes the generated files into their respective subdirectory in the build
// directory.
.destination(path.join(__dirname, 'build', locale))
// This actually executes the build and stops the internal timer after
// completion.
.build((err) => {
if (err) {
throw err;
}
console.timeEnd(labelForBuild);
});
}
// This function builds the static/css folder for all the Sass files.
async function buildCSS() {
console.log('[sass] static/css started');
const labelForBuild = '[sass] static/css finished';
console.time(labelForBuild);
const src = path.join(__dirname, 'layouts/css/styles.scss');
const sassOpts = {
outputStyle:
process.env.NODE_ENV !== 'development' ? 'compressed' : 'expanded'
};
const resultPromise = sass.compileAsync(src, sassOpts);
const dest = path.join(__dirname, 'build/static/css/styles.css');
await fsExtra.promises.mkdir(path.join(__dirname, 'build/static/css'), {
recursive: true
});
const result = await resultPromise;
postcss([autoprefixer])
.process(result.css, { from: src })
.then(async (res) => {
res.warnings().forEach((warn) => {
console.warn(warn.toString());
});
await fsExtra.writeFile(dest, res.css);
console.timeEnd(labelForBuild);
});
}
// This function copies the rest of the static assets to their subfolder in the
// build directory.
async function copyStatic() {
console.log('[fsExtra] copy/static started');
const labelForBuild = '[fsExtra] copy/static finished';
console.time(labelForBuild);
await fsExtra.promises.mkdir(path.join(__dirname, 'build/static/js'), {
recursive: true
});
await Promise.all([
fsExtra.copy(
path.join(__dirname, 'static'),
path.join(__dirname, 'build/static'),
{ overwrite: true, recursive: true }
),
fsExtra.copy(
path.join(
__dirname,
'node_modules/jquery.fancytable/dist/fancyTable.min.js'
),
path.join(__dirname, 'build/static/js/fancyTable.min.js'),
{ overwrite: true }
),
fsExtra.copy(
path.join(__dirname, 'node_modules/jquery/dist/jquery.min.js'),
path.join(__dirname, 'build/static/js/jquery.min.js'),
{ overwrite: true }
)
]);
console.timeEnd(labelForBuild);
}
function getSource(callback) {
// Loads all node/io.js versions.
loadVersions((err, versions) => {
latestVersionInfo = {
current: latestVersion.current(versions),
lts: latestVersion.lts(versions)
};
const source = {
project: {
versions,
latestVersions: latestVersionInfo
}
};
if (
semver.gt(
source.project.latestVersions.lts.node,
source.project.latestVersions.current.node
)
) {
// If LTS is higher than Current hide it from the main page
source.project.latestVersions.hideCurrent = true;
}
callback(err, source);
});
}
// This is where the build is orchestrated from, as indicated by the function
// name. It brings together all build steps and dependencies and executes them.
async function fullBuild(opts) {
const { selectedLocales, preserveLocale } = opts;
getSource(async (err, source) => {
if (err) {
throw err;
}
const locales = await fsExtra.promises.readdir(
path.join(__dirname, 'locale')
);
const filteredLocales = locales.filter(
(file) =>
junk.not(file) &&
(selectedLocales ? selectedLocales.includes(file) : true)
);
const localesData = generateLocalesData(filteredLocales);
filteredLocales.forEach((locale) => {
buildLocale(source, locale, { preserveLocale, localesData });
});
});
}
// Starts the build if the file was executed from the command line
if (require.main === module) {
const preserveLocale = process.argv.includes('--preserveLocale');
const selectedLocales = process.env.DEFAULT_LOCALE
? process.env.DEFAULT_LOCALE.toLowerCase().split(',')
: process.env.DEFAULT_LOCALE;
// Copy static files
copyStatic();
// Build CSS
buildCSS();
fullBuild({ selectedLocales, preserveLocale });
}
exports.getSource = getSource;
exports.fullBuild = fullBuild;
exports.buildCSS = buildCSS;
exports.buildLocale = buildLocale;
exports.copyStatic = copyStatic;
exports.generateLocalesData = generateLocalesData;