chore(dgeni): setting inputs and outputs detection in dgeni

This commit is contained in:
perry
2016-02-09 19:02:11 -06:00
parent d1b92e6335
commit ab61c0b9d1
4 changed files with 115 additions and 24 deletions

View File

@ -20,6 +20,7 @@ module.exports = function(currentVersion){
.processor(require('./processors/jekyll'))
.processor(require('./processors/remove-private-members'))
.processor(require('./processors/hide-private-api'))
.processor(require('./processors/collect-inputs-outputs'))
// for debugging docs
@ -29,7 +30,8 @@ module.exports = function(currentVersion){
// $runBefore: ['rendering-docs'],
// $process: function(docs){
// docs.forEach(function(doc){
// if (doc.members && doc.name == "IonicApp"){
// if (doc.name == "Searchbar"){
// console.log(doc.input);
// doc.members.forEach(function(method){
// if (method.name === "load") {
// console.log(method);
@ -173,4 +175,3 @@ module.exports = function(currentVersion){
})
}