From eb37614d68ec9b81b79ef0c0abf8cc13cfe6a7c8 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 30 Nov 2015 10:35:22 +0000 Subject: [PATCH] chore(doc-gen): update modules to include API docs The public exported modules have been reorganized --- public/resources/js/controllers/app-controller.js | 13 ++++++++----- tools/api-builder/angular.io-package/index.js | 8 ++++++-- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/public/resources/js/controllers/app-controller.js b/public/resources/js/controllers/app-controller.js index a67376ea0e..f3cc3b1ee0 100644 --- a/public/resources/js/controllers/app-controller.js +++ b/public/resources/js/controllers/app-controller.js @@ -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 = ''; diff --git a/tools/api-builder/angular.io-package/index.js b/tools/api-builder/angular.io-package/index.js index 737168a2f8..ac948b21e4 100644 --- a/tools/api-builder/angular.io-package/index.js +++ b/tools/api-builder/angular.io-package/index.js @@ -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;