chore(doc-gen): update modules to include API docs
The public exported modules have been reorganized
This commit is contained in:
parent
037a51505c
commit
eb37614d68
|
@ -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 = '';
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue