2016-10-04 23:39:20 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2016-04-28 20:50:03 -04:00
|
|
|
|
|
|
|
export default {
|
2016-08-30 21:07:40 -04:00
|
|
|
entry: '../../../dist/packages-dist/upgrade/index.js',
|
|
|
|
dest: '../../../dist/packages-dist/upgrade/bundles/upgrade.umd.js',
|
2016-04-28 20:50:03 -04:00
|
|
|
format: 'umd',
|
|
|
|
moduleName: 'ng.upgrade',
|
|
|
|
globals: {
|
|
|
|
'@angular/core': 'ng.core',
|
|
|
|
'@angular/common': 'ng.common',
|
|
|
|
'@angular/compiler': 'ng.compiler',
|
|
|
|
'@angular/platform-browser': 'ng.platformBrowser',
|
2016-06-16 12:56:14 -04:00
|
|
|
'@angular/platform-browser-dynamic': 'ng.platformBrowserDynamic',
|
2016-04-28 20:50:03 -04:00
|
|
|
'rxjs/Subject': 'Rx',
|
2016-10-04 23:39:20 -04:00
|
|
|
'rxjs/observable/PromiseObservable': 'Rx', // this is wrong, but this stuff has changed in rxjs
|
|
|
|
// b.6 so we need to fix it when we update.
|
2016-04-28 20:50:03 -04:00
|
|
|
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
|
2016-10-04 23:39:20 -04:00
|
|
|
'rxjs/Observable': 'Rx',
|
2016-08-30 21:07:40 -04:00
|
|
|
}
|
2016-10-04 23:39:20 -04:00
|
|
|
};
|