From ff0f53c915cb8c1dda185ab2db17e93ded581cbe Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 24 Apr 2017 17:23:37 +0100 Subject: [PATCH] build(aio): include missing packages in the docs These packages were not included in the configuration of the doc-gen, so were not being rendered. --- aio/tools/transforms/angular-api-package/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/aio/tools/transforms/angular-api-package/index.js b/aio/tools/transforms/angular-api-package/index.js index 252c60d370..523b42de88 100644 --- a/aio/tools/transforms/angular-api-package/index.js +++ b/aio/tools/transforms/angular-api-package/index.js @@ -33,6 +33,9 @@ module.exports = new Package('angular-api', [basePackage, typeScriptPackage]) readTypeScriptModules.ignoreExportsMatching = [/^[_ɵ]/]; readTypeScriptModules.hidePrivateMembers = true; readTypeScriptModules.sourceFiles = [ + 'animations/index.ts', + 'animations/browser/index.ts', + 'animations/browser/testing/index.ts', 'common/index.ts', 'common/testing/index.ts', 'core/index.ts', @@ -41,6 +44,7 @@ module.exports = new Package('angular-api', [basePackage, typeScriptPackage]) 'http/index.ts', 'http/testing/index.ts', 'platform-browser/index.ts', + 'platform-browser/animations/index.ts', 'platform-browser/testing/index.ts', 'platform-browser-dynamic/index.ts', 'platform-browser-dynamic/testing/index.ts', @@ -50,8 +54,9 @@ module.exports = new Package('angular-api', [basePackage, typeScriptPackage]) 'platform-webworker-dynamic/index.ts', 'router/index.ts', 'router/testing/index.ts', + 'router/upgrade/index.ts', 'upgrade/index.ts', - 'upgrade/static.ts', + 'upgrade/static/index.ts', ]; // API Examples