fp-ts-rxjs
Advanced tools
Comparing version 0.2.0 to 0.3.0
@@ -15,2 +15,7 @@ # Changelog | ||
# 0.3.0 | ||
- **Breaking Change** | ||
- upgrade to latest fp-ts (0.6) and latest TypeScript (2.6) (@gcanti) | ||
# 0.2.0 | ||
@@ -17,0 +22,0 @@ |
@@ -30,4 +30,4 @@ import { Monoid } from 'fp-ts/lib/Monoid'; | ||
export declare const chain: <A, B>(f: (a: A) => Observable<B>, fa: Observable<A>) => Observable<B>; | ||
export declare const alt: <A>(x: Observable<A>) => (y: Observable<A>) => Observable<A>; | ||
export declare const alt: <A>(x: Observable<A>, y: Observable<A>) => Observable<A>; | ||
export declare const zero: <A>() => Observable<A>; | ||
export declare const rxjs: Monoid<Observable<any>> & Monad<URI> & Alternative<URI>; |
@@ -19,3 +19,3 @@ "use strict"; | ||
exports.chain = function (f, fa) { return fa.flatMap(f); }; | ||
exports.alt = function (x) { return function (y) { return Observable_1.Observable.merge(x, y); }; }; | ||
exports.alt = function (x, y) { return Observable_1.Observable.merge(x, y); }; | ||
exports.zero = function () { return Observable_1.Observable.empty(); }; | ||
@@ -22,0 +22,0 @@ exports.rxjs = { |
{ | ||
"name": "fp-ts-rxjs", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"description": "fp-ts bindings for RxJS", | ||
@@ -27,3 +27,3 @@ "files": ["lib"], | ||
"dependencies": { | ||
"fp-ts": "^0.5.1", | ||
"fp-ts": "^0.6.0", | ||
"rxjs": "^5.4.0" | ||
@@ -39,3 +39,3 @@ }, | ||
"tslint-config-standard": "4.0.0", | ||
"typescript": "^2.5.2" | ||
"typescript": "2.6.0-rc" | ||
}, | ||
@@ -42,0 +42,0 @@ "tags": ["fp-ts", "rxjs"], |
Sorry, the diff of this file is not supported yet
6981
+ Addedfp-ts@0.6.8(transitive)
- Removedfp-ts@0.5.4(transitive)
Updatedfp-ts@^0.6.0