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-05-24 19:13:17 -04:00
|
|
|
export default {
|
2016-08-30 21:07:40 -04:00
|
|
|
entry: '../../../dist/packages-dist/platform-browser-dynamic/index.js',
|
2016-10-04 23:39:20 -04:00
|
|
|
dest:
|
|
|
|
'../../../dist/packages-dist/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
|
2016-05-24 19:13:17 -04:00
|
|
|
format: 'umd',
|
|
|
|
moduleName: 'ng.platformBrowserDynamic',
|
|
|
|
globals: {
|
|
|
|
'@angular/core': 'ng.core',
|
|
|
|
'@angular/common': 'ng.common',
|
|
|
|
'@angular/compiler': 'ng.compiler',
|
2016-10-04 23:39:20 -04:00
|
|
|
'@angular/platform-browser': 'ng.platformBrowser',
|
2016-08-30 21:07:40 -04:00
|
|
|
}
|
2016-10-04 23:39:20 -04:00
|
|
|
};
|