Skip to content

Commit

Permalink
build: e2e failures and add missing rx operators to rollup config (an…
Browse files Browse the repository at this point in the history
  • Loading branch information
crisbeto authored and kara committed Jul 21, 2017
1 parent 3b41c0c commit 3676c2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/material-examples/example-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,7 @@ export const EXAMPLE_LIST = [
SortOverviewExample,
TableBasicExample,
TableFilteringExample,
TableHttpExample,
TableOverviewExample,
TablePaginationExample,
TableSortingExample,
Expand Down
5 changes: 5 additions & 0 deletions tools/package-tools/rollup-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,15 @@ const ROLLUP_GLOBALS = {
// RxJS imports for the examples package
'rxjs/add/observable/merge': 'Rx.Observable',
'rxjs/add/observable/fromEvent': 'Rx.Observable',
'rxjs/add/observable/of': 'Rx.Observable',
'rxjs/add/observable/interval': 'Rx.Observable',
'rxjs/add/operator/startWith': 'Rx.Observable.prototype',
'rxjs/add/operator/map': 'Rx.Observable.prototype',
'rxjs/add/operator/debounceTime': 'Rx.Observable.prototype',
'rxjs/add/operator/distinctUntilChanged': 'Rx.Observable.prototype',
'rxjs/add/operator/first': 'Rx.Observable.prototype',
'rxjs/add/operator/catch': 'Rx.Observable.prototype',
'rxjs/add/operator/switchMap': 'Rx.Observable.prototype',
};

export type BundleConfig = {
Expand Down

0 comments on commit 3676c2c

Please sign in to comment.