Currently our plan is to skip the publish, docgen, and update steps for this package. During RC, we'll determine if the breaking change is too difficult for users, in which case we might restore the package for another major. PR Close #29550
76 lines
2.6 KiB
TypeScript
76 lines
2.6 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
|
|
|
|
import * as animations from '@angular/animations';
|
|
import * as animationsBrowser from '@angular/animations/browser';
|
|
import * as animationsBrowserTesting from '@angular/animations/browser/testing';
|
|
import * as common from '@angular/common';
|
|
import * as commonHttp from '@angular/common/http';
|
|
import * as commonTesting from '@angular/common/testing';
|
|
import * as commonHttpTesting from '@angular/common/testing';
|
|
import * as compiler from '@angular/compiler';
|
|
import * as compilerTesting from '@angular/compiler/testing';
|
|
import * as core from '@angular/core';
|
|
import * as coreTesting from '@angular/core/testing';
|
|
import * as elements from '@angular/elements';
|
|
import * as forms from '@angular/forms';
|
|
// Current plan for Angular 8 is to stop building the @angular/http package
|
|
// import * as http from '@angular/http';
|
|
// import * as httpTesting from '@angular/http/testing';
|
|
import * as platformBrowser from '@angular/platform-browser';
|
|
import * as platformBrowserDynamic from '@angular/platform-browser-dynamic';
|
|
import * as platformBrowserDynamicTesting from '@angular/platform-browser-dynamic/testing';
|
|
import * as platformBrowserAnimations from '@angular/platform-browser/animations';
|
|
import * as platformBrowserTesting from '@angular/platform-browser/testing';
|
|
import * as platformServer from '@angular/platform-server';
|
|
import * as platformServerTesting from '@angular/platform-server/testing';
|
|
import * as platformWebworker from '@angular/platform-webworker';
|
|
import * as platformWebworkerDynamic from '@angular/platform-webworker-dynamic';
|
|
import * as router from '@angular/router';
|
|
import * as routerTesting from '@angular/router/testing';
|
|
import * as routerUpgrade from '@angular/router/upgrade';
|
|
import * as serviceWorker from '@angular/service-worker';
|
|
import * as upgrade from '@angular/upgrade';
|
|
import * as upgradeStatic from '@angular/upgrade/static';
|
|
|
|
export default {
|
|
animations,
|
|
animationsBrowser,
|
|
animationsBrowserTesting,
|
|
common,
|
|
commonTesting,
|
|
commonHttp,
|
|
commonHttpTesting,
|
|
compiler,
|
|
compilerTesting,
|
|
core,
|
|
coreTesting,
|
|
elements,
|
|
forms,
|
|
// See above
|
|
// http,
|
|
// httpTesting,
|
|
platformBrowser,
|
|
platformBrowserTesting,
|
|
platformBrowserDynamic,
|
|
platformBrowserDynamicTesting,
|
|
platformBrowserAnimations,
|
|
platformServer,
|
|
platformServerTesting,
|
|
platformWebworker,
|
|
platformWebworkerDynamic,
|
|
router,
|
|
routerTesting,
|
|
routerUpgrade,
|
|
serviceWorker,
|
|
upgrade,
|
|
upgradeStatic
|
|
};
|