chore(doc-gen): update modules to include API docs

The public exported modules have been reorganized
This commit is contained in:
Peter Bacon Darwin 2015-11-30 10:35:22 +00:00 committed by Naomi Black
parent 037a51505c
commit eb37614d68
2 changed files with 14 additions and 7 deletions

View File

@ -60,11 +60,14 @@ angularIO.controller('AppCtrl', ['$mdDialog', '$timeout', '$http', '$sce', funct
};
vm.apiSections = [
{ name: 'angular2/core', title: 'Core' },
{ name: 'angular2/http', title: 'HTTP' },
{ name: 'angular2/lifecycle_hooks', title: 'Lifecycle Hooks' },
{ name: 'angular2/router', title: 'Router' },
{ name: 'angular2/test', title: 'Test' }
{ name: 'angular2/core', title: 'angular2/core' },
{ name: 'angular2/common', title: 'angular2/common' },
{ name: 'angular2/animate', title: 'angular2/animate' },
{ name: 'angular2/http', title: 'angular2/http' },
{ name: 'angular2/instrumentation', title: 'angular2/instrumentation' },
{ name: 'angular2/platform/browser', title: 'angular2/platform/browser' },
{ name: 'angular2/router', title: 'angular2/router' },
{ name: 'angular2/testing', title: 'angular2/testing' }
];
vm.apiType = '';
vm.apiFilter = '';

View File

@ -36,11 +36,15 @@ module.exports = new Package('angular.io', [basePackage, targetPackage, cheatshe
.config(function(readTypeScriptModules, writeFilesProcessor, readFilesProcessor) {
readTypeScriptModules.sourceFiles = [
'angular2/lifecycle_hooks.ts',
'angular2/animate.ts',
'angular2/common.ts',
'angular2/compiler.ts',
'angular2/core.ts',
'angular2/http.ts',
'angular2/instrumentation.ts',
'angular2/platform/browser.ts',
'angular2/router.ts',
'angular2/test.ts'
'angular2/testing.ts'
];
readTypeScriptModules.hidePrivateMembers = true;