chore(doc-gen): include `enum` in the export doc types

Fixes errors about missing "path templates" such as:

```
warn:    No path template provided - doc "ViewType" (enum)  - from file "angular2/src/render/api.ts"
warn:    No output path template provided - doc "ViewType" (enum)  - from file "angular2/src/render/api.ts"
```
This commit is contained in:
Peter Bacon Darwin 2015-06-12 20:59:27 +01:00
parent 9908def857
commit 992293a196
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ module.exports = new Package('angular', [jsdocPackage, nunjucksPackage, linksPac
'interface',
'function',
'var',
'const'
'const',
'enum'
];
})