2020-05-16 20:40:49 +08:00
|
|
|
'use strict';
|
2016-01-26 06:20:36 +08:00
|
|
|
module.exports = function removePrivateApi() {
|
|
|
|
return {
|
|
|
|
name: 'remove-private-api',
|
|
|
|
description: 'Prevent the private apis from being rendered',
|
|
|
|
$runBefore: ['rendering-docs'],
|
2020-05-16 20:40:49 +08:00
|
|
|
$process: docs => docs.filter(doc => !doc.private && (!doc.tags || !doc.tags.tagsByName.get('hidden'))),
|
2017-03-24 10:07:59 +08:00
|
|
|
};
|
2016-01-26 06:20:36 +08:00
|
|
|
};
|