mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
10 lines
321 B
JavaScript
10 lines
321 B
JavaScript
"use strict";
|
|
module.exports = function removePrivateApi() {
|
|
return {
|
|
name: 'remove-private-api',
|
|
description: 'Prevent the private apis from being rendered',
|
|
$runBefore: ['rendering-docs'],
|
|
$process: docs => docs.filter(doc => !doc.private && (!doc.tags || !doc.tags.tagsByName.get('hidden')))
|
|
};
|
|
};
|