-
Notifications
You must be signed in to change notification settings - Fork 491
/
Copy pathpixidoc.js
65 lines (50 loc) · 1.54 KB
/
pixidoc.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
/**
* Generates the appropriate JSDoc from some (PIXI) YUIDoc.
* This could be turned into a more general pacakge.
*
* Requires: yuidocjs
*/
'use strict';
function generateYuiDoc (sourcePaths, grunt)
{
var Y = require('yuidocjs');
var options = {
parseOnly: true,
quiet: true,
paths: sourcePaths
};
return (new Y.YUIDoc(options)).run();
}
module.exports = function (grunt)
{
grunt.registerTask('pixidoc', 'Generates JSDoc from the PIXI YUIdocs', function ()
{
var sources = [ 'src/pixi' ];
var output = 'docs/pixi-jsdoc.js';
var yui2jsdoc = require('./yuidoc-to-jsdoc/converter');
var fs = require('fs');
var path = require('path');
// Right now yuidocsjs requires an absolute path so it emits an
// absolute path in the jsdoc (or the JSDoc will error on missing files)
sources = sources.map(function (source)
{
return path.resolve(source);
});
var data = generateYuiDoc(sources);
if (!data)
{
grunt.fail.warn('PIXI YUIDoc not generated - nothing to do');
return;
}
// Fake in namespace (current limitation)
// A preamble/warning wrt the YUIDoc-to-JSDoc with proper link-outs could
// also be added here.
var header =
'/**\n' +
'* @namespace PIXI\n' +
'*/';
var comments = yui2jsdoc.convert(data);
comments.unshift(header);
fs.writeFileSync(output, comments.join('\n'));
});
};