forked from Automattic/mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.js
110 lines (91 loc) · 2.97 KB
/
website.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
'use strict';
const acquit = require('acquit');
const fs = require('fs');
const jade = require('jade');
const pkg = require('./package');
const linktype = require('./docs/helpers/linktype');
const href = require('./docs/helpers/href');
const klass = require('./docs/helpers/klass');
const transform = require('acquit-require');
require('acquit-ignore')();
const markdown = require('marked');
const highlight = require('highlight.js');
markdown.setOptions({
highlight: function(code) {
return highlight.highlight('JavaScript', code).value;
}
});
jade.filters.markdown = markdown;
const tests = [
...acquit.parse(fs.readFileSync('./test/webpack.test.js').toString()),
...acquit.parse(fs.readFileSync('./test/geojson.test.js').toString()),
...acquit.parse(fs.readFileSync('./test/docs/transactions.test.js').toString()),
...acquit.parse(fs.readFileSync('./test/schema.alias.test.js').toString()),
...acquit.parse(fs.readFileSync('./test/model.middleware.test.js').toString())
];
function getVersion() {
return require('./package.json').version;
}
function getLatestLegacyVersion(startsWith) {
const hist = fs.readFileSync('./History.md', 'utf8').replace(/\r/g, '\n').split('\n');
for (let i = 0; i < hist.length; ++i) {
const line = (hist[i] || '').trim();
if (!line) {
continue;
}
const match = /^\s*([^\s]+)\s/.exec(line);
if (match && match[1] && match[1].startsWith(startsWith)) {
return match[1];
}
}
throw new Error('no match found');
}
// use last release
pkg.version = getVersion();
pkg.latest4x = getLatestLegacyVersion('4.');
pkg.latest38x = getLatestLegacyVersion('3.8');
const filemap = require('./docs/source');
const files = Object.keys(filemap);
function jadeify(filename, options, newfile) {
options = options || {};
options.package = pkg;
options.linktype = linktype;
options.href = href;
options.klass = klass;
let contents = fs.readFileSync(filename).toString();
if (options.acquit) {
contents = transform(contents, tests);
}
options.filename = filename;
jade.render(contents, options, function(err, str) {
if (err) {
console.error(err.stack);
return;
}
newfile = newfile || filename.replace('.jade', '.html');
fs.writeFile(newfile, str, function(err) {
if (err) {
console.error('could not write', err.stack);
} else {
console.log('%s : rendered ', new Date, newfile);
}
});
});
}
files.forEach(function(file) {
const filename = __dirname + '/' + file;
jadeify(filename, filemap[file]);
if (process.argv[2] === '--watch') {
fs.watchFile(filename, {interval: 1000}, function(cur, prev) {
if (cur.mtime > prev.mtime) {
jadeify(filename, filemap[file]);
}
});
}
});
const _acquit = require('./docs/source/acquit');
const acquitFiles = Object.keys(_acquit);
acquitFiles.forEach(function(file) {
const filename = __dirname + '/docs/acquit.jade';
jadeify(filename, _acquit[file], __dirname + '/docs/' + file);
});