From ae96d7ed910cb36a347b6f14fcace43db415d957 Mon Sep 17 00:00:00 2001 From: Adam Plumer Date: Wed, 23 May 2018 23:47:44 -0400 Subject: [PATCH] build: fix rollup global name in umd bundle * Equivalent commit to angular/material2#11413 --- 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 ffc668105..b1d9e1487 100644 --- a/tools/package-tools/rollup-globals.ts +++ b/tools/package-tools/rollup-globals.ts @@ -45,6 +45,6 @@ export const rollupGlobals = { // Include secondary entry-points of the cdk and material packages ...rollupFlexLayoutEntryPoints, - 'rxjs': 'Rx', - 'rxjs/operators': 'Rx.operators', + 'rxjs': 'rxjs', + 'rxjs/operators': 'rxjs.operators', };