kibana/packages/kbn-dev-utils
Spencer 6a429d7fa3
[npm] upgrade to RxJS 6 (#18885)
This PR upgrades RxJS to version 6 and switches to a fork of `stream-to-observable` which includes an updated version of `any-observable` that supports RxJS 6 until https://github.com/jamestalmage/stream-to-observable/pull/10 is merged. The primary change in this version of RxJS is the movement of stream operators from `Obersable.prototype` to the `rxjs/operators` module. Some of the operators, like `catch` and `do`, have been renamed (`catchError`, and `tap`). The Obsevable factories have also been moved from static methods on the `Observable` class to named exports of the root `rxjs` module. Some of those factories have also changed slightly, like `fromEvent` which now emits arrays if the event handler is called with multiple arguments.

```js
// import the Rx namespace to get the Observable factories
import * as Rx from 'rxjs';
// import the operators as named imports
import { map, tap, switchMap } from 'rxjs/operators';
```
2018-06-18 10:16:38 -07:00
..
src [npm] upgrade to RxJS 6 (#18885) 2018-06-18 10:16:38 -07:00
.babelrc Rename @kbn/babel-preset/common & node & webpack to @kbn/babel-preset/common_preset & node_preset & webpack_preset. (#19025) 2018-05-15 17:23:20 +02:00
index.d.ts [npm] upgrade to RxJS 6 (#18885) 2018-06-18 10:16:38 -07:00
package.json [npm] upgrade to RxJS 6 (#18885) 2018-06-18 10:16:38 -07:00
README.md
tsconfig.json [tslint] lint typescript code (#19105) 2018-05-22 14:00:02 -07:00
yarn.lock [npm] upgrade to RxJS 6 (#18885) 2018-06-18 10:16:38 -07:00

dev utils

proc runner

For running integration tests in Kibana

tooling log