-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.js
104 lines (87 loc) · 3.03 KB
/
plugin.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
// *********************************************************************
// Copyright 2018 Healthy Bytes Technology & Wellness
//
// A TypeDoc plugin for Brunch.
'use strict';
const debug = require('debug')('brunch:typedoc');
const td = require('typedoc');
class TypeDoccer
{
// Brunch constructs an instance of TypeDoccer when the plugin is loaded and
// it supplies the entire Brunch config object.
constructor(brunchCfg)
{
// Find our portion of the config.
const cfg = (brunchCfg
&& brunchCfg.plugins
&& brunchCfg.plugins.typedoc
? brunchCfg.plugins.typedoc
: {});
// We require either the 'out' or 'json' options, but not both.
if (cfg.hasOwnProperty('out') && cfg.hasOwnProperty('json'))
{
debug("Cannot specify both 'out' and 'json' options");
throw new Error('invalid config');
}
if (! cfg.hasOwnProperty('out') && ! cfg.hasOwnProperty('json'))
{
debug("Must specify either 'out' or 'json' option");
throw new Error('invalid config');
}
// TypeDoc complains if the options we give it contain the 'out', 'json'
// or 'version' fields.
//
// We remove and remember 'out' and 'json'.
this.out = cfg.out;
delete cfg.out;
this.json = cfg.json;
delete cfg.json;
// We ignore and remove 'version'
if (cfg.hasOwnProperty('version'))
{
debug("Ignoring 'version' option");
delete cfg.version;
}
// We always supply our own logger function, clobbering anything specified
// in the cfg.
cfg.logger = (msg, level) => { debug(`[${level}] ${msg}`); }
// Make a new TypeDoc instance with the given config options.
this.typedoc = new td.Application(cfg);
}
// Run TypeDoc over the TypeScript source files included in brunchFiles, and
// generate the docs.
onCompile(brunchFiles)
{
// Translate the array of Brunch files into an array of bare filenames.
const files = brunchFiles.map((file) => { return file.path; });
// Generate the docs.
let result;
// Generate HTML docs if 'out' was specified.
if (this.out !== undefined)
{
result = this.typedoc.generateDocs(files, this.out);
}
// Otherwise, assume 'json' was specified and generate JSON files.
else
{
result = this.typedoc.generateJson(files, this.json);
}
// Detect errors. The details would have already been emitted by the
// logging function.
if (! result || this.typedoc.hasErrors())
{
throw new Error(`failed to generate docs`);
}
// Success.
debug(`Generated docs for ${files.length} source files`);
}
}
// Tell Brunch that we are a plugin, and we handle code source files.
//
// The presence of an onCompile() function on TypeDoccer tells Brunch to
// execute that function after a successful compilation run.
//
TypeDoccer.prototype.brunchPlugin = true;
TypeDoccer.prototype.type = 'javascript';
module.exports = TypeDoccer;
// *********************************************************************