the previous demo app was broken and is missing an e2e test. I fixed the app, but was not able to get protractor to properly test this app. Julie and I are looking into that. For now I manually verified that the app works and that the original issue was fixed. Closes #9244
20 lines
710 B
JavaScript
20 lines
710 B
JavaScript
|
|
export default {
|
|
entry: '../../../dist/packages-dist/upgrade/esm/index.js',
|
|
dest: '../../../dist/packages-dist/upgrade/esm/upgrade.umd.js',
|
|
format: 'umd',
|
|
moduleName: 'ng.upgrade',
|
|
globals: {
|
|
'@angular/core': 'ng.core',
|
|
'@angular/common': 'ng.common',
|
|
'@angular/compiler': 'ng.compiler',
|
|
'@angular/platform-browser': 'ng.platformBrowser',
|
|
'@angular/platform-browser-dynamic': 'ng.platformBrowserDynamic',
|
|
'rxjs/Subject': 'Rx',
|
|
'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.
|
|
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
|
|
'rxjs/Observable': 'Rx'
|
|
},
|
|
plugins: []
|
|
}
|