-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed full currying of methods (breaking change)
removed flow from codebase deprecated courier
- Loading branch information
Jack Ellis
committed
Oct 23, 2017
1 parent
e3b1674
commit ec91d6b
Showing
27 changed files
with
323 additions
and
2,776 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"presets" : [ | ||
"flow", | ||
["env", { | ||
"targets" : { | ||
"browsers" : ["last 2 versions"], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# Change Log | ||
|
||
## 0.2.0 | ||
- `createHOCc` and `createRenderFnc` are now not *fully* curried methods, each takes configuration arguments and returns a function that accepts a component. | ||
```js | ||
// 0.1: | ||
createHOCc(options)(renderWith)(Component) | ||
// or | ||
createHOCc(options, renderWith, Component) | ||
// must now be written as | ||
createHOCc(options, renderWith)(Component) | ||
``` | ||
|
||
## 0.1.6 | ||
- Correctly handle scoped (template) slots [10](https://github.com/jackmellis/vue-hoc/pull/10) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.