Skip to content

Commit 7a20975

Browse files
chore(rollup): Add more externals identifiers for rxjs
1 parent 834fc38 commit 7a20975

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

rollup.config.js

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,29 +82,33 @@ const CONFIG = {
8282
'rxjs/Subscription': 'Rx',
8383
'rxjs/util/EmptyError': 'Rx',
8484

85+
'rxjs/observable/combineLatest': 'Rx.Observable',
86+
'rxjs/observable/forkJoin': 'Rx.Observable',
8587
'rxjs/observable/from': 'Rx.Observable',
8688
'rxjs/observable/fromPromise': 'Rx.Observable',
87-
'rxjs/observable/forkJoin': 'Rx.Observable',
8889
'rxjs/observable/of': 'Rx.Observable',
8990

90-
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
91-
'rxjs/operator/map': 'Rx.Observable.prototype',
92-
'rxjs/operator/mergeAll': 'Rx.Observable.prototype',
91+
'rxjs/operator/catch': 'Rx.Observable.prototype',
92+
'rxjs/operator/concat': 'Rx.Observable.prototype',
9393
'rxjs/operator/concatAll': 'Rx.Observable.prototype',
94-
'rxjs/operator/mergeMap': 'Rx.Observable.prototype',
95-
'rxjs/operator/reduce': 'Rx.Observable.prototype',
94+
'rxjs/operator/concatMap': 'Rx.Observable.prototype',
9695
'rxjs/operator/every': 'Rx.Observable.prototype',
96+
'rxjs/operator/filter': 'Rx.Observable.prototype',
9797
'rxjs/operator/first': 'Rx.Observable.prototype',
98-
'rxjs/operator/catch': 'Rx.Observable.prototype',
9998
'rxjs/operator/last': 'Rx.Observable.prototype',
100-
'rxjs/operator/filter': 'Rx.Observable.prototype',
101-
'rxjs/operator/concatMap': 'Rx.Observable.prototype',
99+
'rxjs/operator/map': 'Rx.Observable.prototype',
100+
'rxjs/operator/mergeAll': 'Rx.Observable.prototype',
101+
'rxjs/operator/mergeMap': 'Rx.Observable.prototype',
102+
'rxjs/operator/reduce': 'Rx.Observable.prototype',
103+
'rxjs/operator/switchMap': 'Rx.Observable.prototype',
104+
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
102105

103106
'@uirouter/core': '@uirouter/core',
104107
'@uirouter/rx': '@uirouter/rx',
105108
'ui-router-rx': 'ui-router-rx',
106109
'@angular/core': 'ng.core',
107110
'@angular/common': 'ng.common',
111+
'@angular/router': 'ng.router',
108112
}
109113
};
110114

0 commit comments

Comments
 (0)