Comparing version 0.5.2 to 0.5.3
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.5.3](https://github.com/ai-labs-team/mgFx/compare/mgfx@0.5.2...mgfx@0.5.3) (2020-04-02) | ||
### Bug Fixes | ||
* core: fluent pipe should take priority over original ([dba5562](https://github.com/ai-labs-team/mgFx/commit/dba5562)) | ||
## [0.5.2](https://github.com/ai-labs-team/mgFx/compare/mgfx@0.5.1...mgfx@0.5.2) (2020-04-02) | ||
@@ -8,0 +19,0 @@ |
@@ -7,3 +7,3 @@ export * from 'fluenture'; | ||
export declare type Future<A, B> = FutureInstance<A, B> | Fluenture<A, B>; | ||
export declare type Fluent<A, B> = FutureInstance<A, B> & Fluenture<A, B>; | ||
export declare type Fluent<A, B> = Fluenture<A, B> & FutureInstance<A, B>; | ||
export declare function fluent<A, B>(future: Future<A, B>): Fluent<A, B>; | ||
@@ -10,0 +10,0 @@ export declare function functional<A, B>(future: Future<A, B>): FutureInstance<A, B>; |
{ | ||
"name": "mgfx", | ||
"description": "Managed Side-Effects for JavaScript", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"files": [ | ||
@@ -32,3 +32,3 @@ "dist" | ||
}, | ||
"gitHead": "2d94c42affe84d4bf217e5989314bf38c0c8e94d" | ||
"gitHead": "24dcc2ca860ee0a3f7996d793318aac797968b5e" | ||
} |
Sorry, the diff of this file is not supported yet
61089