forked from jsdoc/jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jakefile.js
82 lines (65 loc) · 2.3 KB
/
Jakefile.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
/*global desc: true, fail: true, Mustache: true, task: true */
// see: https://github.com/mde/jake
desc('Updating package.json revision.');
task('default', [], function(params) {
/*jshint evil: true */
var fs = require('fs');
// import the Mustache template tool
eval(fs.readFileSync('Jake/lib/mustache.js', 'utf8'));
var templates = {
packagejson : fs.readFileSync('Jake/templates/package.json.tmpl', 'utf8')
};
var metadata = {
appname : 'jsdoc',
appversion : '3.0.0',
timestamp : '' + new Date().getTime()
};
var outdir = './';
var rendered = Mustache.to_html(templates.packagejson, metadata);
fs.writeFileSync(outdir + 'package.json', rendered, 'utf8');
process.exit(0);
});
desc('Installs a plugin/template.');
task('install', [], function(loc) {
var fs = require('fs'),
util = require('util'),
path = require('path'),
wrench = require('wrench');
if(!loc) {
fail("You must specify the location of the plugin/template.");
}
if(!fs.existsSync(loc)) {
fail("plugin/template location [" + loc + "] is not valid.");
}
var pluginLoc = path.join(loc, "plugins"),
templateLoc = path.join(loc, "templates"),
jsdocLoc = process.cwd(),
name,
config;
//First the plugin
if(fs.existsSync(pluginLoc)) {
//copy it over
wrench.copyDirSyncRecursive(pluginLoc, path.join(jsdocLoc, "plugins"), {
preserve : true
});
//find out what it's called
name = fs.readdirSync(pluginLoc)[0].replace(".js", "");
//And finally edit the conf.json
try {
config = JSON.parse(fs.readFileSync(path.join(jsdocLoc, 'conf.json'), 'utf8'));
if(config.plugins.indexOf('plugins/' + name) == -1) {
config.plugins.push('plugins/' + name);
fs.writeFileSync(path.join(jsdocLoc, 'conf.json'), JSON.stringify(config, null, " "), 'utf8');
}
} catch (e) {
fail("Could not edit the conf.json file: " + e);
}
}
//Then the template
if(fs.existsSync(templateLoc)) {
wrench.copyDirSyncRecursive(templateLoc, path.join(jsdocLoc, "templates"), {
preserve : true
});
}
process.exit(0);
});