Skip to content

Commit

Permalink
Fixed package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
joanllenas committed Sep 25, 2018
1 parent 96d4afc commit 68aebe4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts.data.either",
"version": "0.9.1",
"version": "0.9.2",
"description": "A Typescript implementation of the Either data type",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
14 changes: 13 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
export { Right, Left, Either } from './either';
export {
Right,
Left,
Either,
left,
right,
isLeft,
isRight,
withDefault,
map,
andThen,
caseOf
} from './either';

0 comments on commit 68aebe4

Please sign in to comment.