From 0cce3259e15e09500934608c57aa1b354d54279b Mon Sep 17 00:00:00 2001 From: crisbeto Date: Sat, 19 May 2018 15:32:49 +0200 Subject: [PATCH] build: fix rollup global name in umd bundle 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. --- tools/package-tools/rollup-globals.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/package-tools/rollup-globals.ts b/tools/package-tools/rollup-globals.ts index e84d381ba705..674841ba2124 100644 --- a/tools/package-tools/rollup-globals.ts +++ b/tools/package-tools/rollup-globals.ts @@ -54,6 +54,6 @@ export const rollupGlobals = { ...rollupCdkEntryPoints, ...rollupMatEntryPoints, - 'rxjs': 'Rx', - 'rxjs/operators': 'Rx.operators', + 'rxjs': 'rxjs', + 'rxjs/operators': 'rxjs.operators', };