Add list of provides to symbol metadata

This commit is contained in:
Tim Schaub
2014-04-28 17:13:57 -06:00
parent fd170eb295
commit d087fdbefd
2 changed files with 69 additions and 11 deletions

View File

@@ -16,11 +16,11 @@ exports.publish = function(data, opts) {
// get all doclets with the "api" property, but no enums, typedefs and events.
var docs = data(
{api: {isString: true}},
{isEnum: {'!is': true}},
{kind: {'!is': 'typedef'}},
{kind: {'!is': 'event'}}
).get();
{api: {isString: true}},
{isEnum: {'!is': true}},
{kind: {'!is': 'typedef'}},
{kind: {'!is': 'event'}}
).get();
// get symbols data, filter out those that are members of private classes
var symbols = docs.filter(function(doc) {