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.
This commit is contained in:
parent
64ef69fb34
commit
ff0f53c915
|
@ -33,6 +33,9 @@ module.exports = new Package('angular-api', [basePackage, typeScriptPackage])
|
||||||
readTypeScriptModules.ignoreExportsMatching = [/^[_ɵ]/];
|
readTypeScriptModules.ignoreExportsMatching = [/^[_ɵ]/];
|
||||||
readTypeScriptModules.hidePrivateMembers = true;
|
readTypeScriptModules.hidePrivateMembers = true;
|
||||||
readTypeScriptModules.sourceFiles = [
|
readTypeScriptModules.sourceFiles = [
|
||||||
|
'animations/index.ts',
|
||||||
|
'animations/browser/index.ts',
|
||||||
|
'animations/browser/testing/index.ts',
|
||||||
'common/index.ts',
|
'common/index.ts',
|
||||||
'common/testing/index.ts',
|
'common/testing/index.ts',
|
||||||
'core/index.ts',
|
'core/index.ts',
|
||||||
|
@ -41,6 +44,7 @@ module.exports = new Package('angular-api', [basePackage, typeScriptPackage])
|
||||||
'http/index.ts',
|
'http/index.ts',
|
||||||
'http/testing/index.ts',
|
'http/testing/index.ts',
|
||||||
'platform-browser/index.ts',
|
'platform-browser/index.ts',
|
||||||
|
'platform-browser/animations/index.ts',
|
||||||
'platform-browser/testing/index.ts',
|
'platform-browser/testing/index.ts',
|
||||||
'platform-browser-dynamic/index.ts',
|
'platform-browser-dynamic/index.ts',
|
||||||
'platform-browser-dynamic/testing/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',
|
'platform-webworker-dynamic/index.ts',
|
||||||
'router/index.ts',
|
'router/index.ts',
|
||||||
'router/testing/index.ts',
|
'router/testing/index.ts',
|
||||||
|
'router/upgrade/index.ts',
|
||||||
'upgrade/index.ts',
|
'upgrade/index.ts',
|
||||||
'upgrade/static.ts',
|
'upgrade/static/index.ts',
|
||||||
];
|
];
|
||||||
|
|
||||||
// API Examples
|
// API Examples
|
||||||
|
|
Loading…
Reference in New Issue