fix: correct UMD resolutions for platform-browser_animations (#15190)
Fixes #15114
This commit is contained in:
parent
dd36d413ba
commit
923d0c56e7
|
@ -10,10 +10,12 @@ export default {
|
|||
entry: '../../../dist/packages-dist/platform-browser/@angular/platform-browser/animations.es5.js',
|
||||
dest: '../../../dist/packages-dist/platform-browser/bundles/platform-browser-animations.umd.js',
|
||||
format: 'umd',
|
||||
moduleName: 'ng.platformBrowser.testing',
|
||||
moduleName: 'ng.platformBrowser.animations',
|
||||
globals: {
|
||||
'@angular/core': 'ng.core',
|
||||
'@angular/common': 'ng.common',
|
||||
'@angular/platform-browser': 'ng.platformBrowser'
|
||||
'@angular/platform-browser': 'ng.platformBrowser',
|
||||
'@angular/animations': 'ng.animations',
|
||||
'@angular/animations/browser': 'ng.animations.browser'
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue