Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

build: fix rollup global name in umd bundle #751

Merged
merged 1 commit into from
May 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/package-tools/rollup-globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
};