fix(api-builder): remove obsolete decorator type

This commit is contained in:
Igor Minar 2016-09-08 13:27:24 -07:00
parent 3e69d83e68
commit 24db3d5b9e
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ module.exports = function extractDirectiveClassesProcessor(EXPORT_DOC_TYPES) {
return {
$runAfter: ['processing-docs'],
$runBefore: ['docs-processed'],
decoratorTypes: ['Directive', 'Component', 'View'],
decoratorTypes: ['Directive', 'Component'],
$process: function(docs) {
var decoratorTypes = this.decoratorTypes;
@ -27,4 +27,4 @@ module.exports = function extractDirectiveClassesProcessor(EXPORT_DOC_TYPES) {
return docs;
}
};
};
};