Skip to content

Commit cdbb3e1

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 83ce27c commit cdbb3e1

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
@@ -69,6 +69,6 @@ export const rollupGlobals = {
6969
...rollupMatEntryPoints,
7070
...rollupCdkExperimentalEntryPoints,
7171

72-
'rxjs': 'Rx',
73-
'rxjs/operators': 'Rx.operators',
72+
'rxjs': 'rxjs',
73+
'rxjs/operators': 'rxjs.operators',
7474
};

0 commit comments

Comments
 (0)