From e25baa08b33c7679165f94e54f438328db506bf8 Mon Sep 17 00:00:00 2001 From: CorvusCorrax Date: Thu, 3 Nov 2016 05:55:02 +0100 Subject: [PATCH] fix(router): correctly export concatMap operator in es5 (#12430) --- modules/@angular/router/rollup.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/@angular/router/rollup.config.js b/modules/@angular/router/rollup.config.js index a6d3cfa11b..5ee5465f69 100644 --- a/modules/@angular/router/rollup.config.js +++ b/modules/@angular/router/rollup.config.js @@ -37,7 +37,8 @@ export default { 'rxjs/operator/first': 'Rx.Observable.prototype', 'rxjs/operator/catch': 'Rx.Observable.prototype', 'rxjs/operator/last': 'Rx.Observable.prototype', - 'rxjs/operator/filter': 'Rx.Observable.prototype' + 'rxjs/operator/filter': 'Rx.Observable.prototype', + 'rxjs/operator/concatMap': 'Rx.Observable.prototype' }, plugins: [] };