From 992293a196761def8720464cd8e5d43394ab2876 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 12 Jun 2015 20:59:27 +0100 Subject: [PATCH] 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" ``` --- docs/dgeni-package/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/dgeni-package/index.js b/docs/dgeni-package/index.js index e46daffbc5..bc2143588d 100644 --- a/docs/dgeni-package/index.js +++ b/docs/dgeni-package/index.js @@ -29,7 +29,8 @@ module.exports = new Package('angular', [jsdocPackage, nunjucksPackage, linksPac 'interface', 'function', 'var', - 'const' + 'const', + 'enum' ]; })