Skip to content

Commit 152f14e

Browse files
crisbetommalerba
authored andcommitted
build: fix rollup global name in umd bundle (#11413)
Between rxjs 5.5 and 6.0 the global name changed from `Rx` to `rxjs`, however ours is still set to `Rx`. These changes switch to using the correct name. Fixes #11299.
1 parent 397bd27 commit 152f14e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/package-tools/rollup-globals.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ export const rollupGlobals = {
5454
...rollupCdkEntryPoints,
5555
...rollupMatEntryPoints,
5656

57-
'rxjs': 'Rx',
58-
'rxjs/operators': 'Rx.operators',
57+
'rxjs': 'rxjs',
58+
'rxjs/operators': 'rxjs.operators',
5959
};

0 commit comments

Comments
 (0)