fp-ts-rxjs
Advanced tools
Comparing version 0.0.1 to 0.1.0
@@ -15,1 +15,9 @@ # Changelog | ||
# 0.1.0 | ||
- **Breaking Change** | ||
- upgrade to latest fp-ts (@gcanti) | ||
# 0.0.1 | ||
Initial release |
@@ -0,1 +1,4 @@ | ||
import { Monoid } from 'fp-ts/lib/Monoid'; | ||
import { Monad } from 'fp-ts/lib/Monad'; | ||
import { Alternative } from 'fp-ts/lib/Alternative'; | ||
import { Observable } from 'rxjs/Observable'; | ||
@@ -8,5 +11,6 @@ import 'rxjs/add/observable/empty'; | ||
import 'rxjs/add/operator/mergeMap'; | ||
declare module 'fp-ts/lib/HKT' { | ||
interface HKT<A> { | ||
Observable: Observable<A>; | ||
declare module 'rxjs/Observable' { | ||
interface Observable<T> { | ||
_URI: URI; | ||
_A: T; | ||
} | ||
@@ -24,1 +28,2 @@ } | ||
export declare function zero<A>(): Observable<A>; | ||
export declare const rxjs: Monoid<Observable<any>> & Monad<URI> & Alternative<URI>; |
@@ -43,3 +43,3 @@ "use strict"; | ||
exports.zero = zero; | ||
var proof = { | ||
exports.rxjs = { | ||
URI: exports.URI, | ||
@@ -55,4 +55,2 @@ concat: concat, | ||
}; | ||
// tslint:disable-next-line no-unused-expression | ||
proof; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "fp-ts-rxjs", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"description": "fp-ts bindings for RxJS", | ||
"files": [ | ||
"lib" | ||
], | ||
"files": ["lib"], | ||
"main": "lib/index.js", | ||
@@ -29,3 +27,3 @@ "typings": "lib/index.d.ts", | ||
"dependencies": { | ||
"fp-ts": "^0.3.1", | ||
"fp-ts": "^0.4.0", | ||
"rxjs": "^5.4.0" | ||
@@ -37,17 +35,10 @@ }, | ||
"mocha": "3.2.0", | ||
"prettier": "^1.4.2", | ||
"ts-node": "2.0.0", | ||
"prettier": "1.5.2", | ||
"ts-node": "3.2.0", | ||
"tslint": "4.4.2", | ||
"tslint-config-standard": "4.0.0", | ||
"typescript": "2.3.3", | ||
"typings-checker": "1.1.2" | ||
"typescript": "2.4.1" | ||
}, | ||
"tags": [ | ||
"fp-ts", | ||
"rxjs" | ||
], | ||
"keywords": [ | ||
"fp-ts", | ||
"rxjs" | ||
] | ||
"tags": ["fp-ts", "rxjs"], | ||
"keywords": ["fp-ts", "rxjs"] | ||
} |
Sorry, the diff of this file is not supported yet
6568
8
80
+ Addedfp-ts@0.4.6(transitive)
- Removedfp-ts@0.3.5(transitive)
Updatedfp-ts@^0.4.0