Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
v6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru committed Aug 30, 2017
1 parent ef12436 commit be0a3c6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"packages": [
"packages/*"
],
"version": "0.0.0-development",
"version": "6.0.1",
"hoist": true
}
4 changes: 2 additions & 2 deletions packages/funfix-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "funfix-core",
"description": "Sub-package of Funfix exposing primitive interfaces and data types belonging into a standard library",
"version": "0.0.0-development",
"version": "6.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
Expand Down Expand Up @@ -66,4 +66,4 @@
"option",
"either"
]
}
}
8 changes: 4 additions & 4 deletions packages/funfix-effect/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "funfix-effect",
"description": "Sub-package of Funfix defining monadic data types for dealing with laziness and side effects",
"version": "0.0.0-development",
"version": "6.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
Expand All @@ -18,8 +18,8 @@
"copy-flow": "../../scripts/copy-flow.js ."
},
"dependencies": {
"funfix-core": "0.0.0-development",
"funfix-exec": "0.0.0-development"
"funfix-core": "^6.0.1",
"funfix-exec": "^6.0.1"
},
"files": [
"dist",
Expand Down Expand Up @@ -70,4 +70,4 @@
"option",
"either"
]
}
}
6 changes: 3 additions & 3 deletions packages/funfix-exec/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "funfix-exec",
"description": "Sub-package of Funfix defining type classes inspired by Haskell's standard library and by Typelevel Cats",
"version": "0.0.0-development",
"version": "6.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
Expand All @@ -18,7 +18,7 @@
"copy-flow": "../../scripts/copy-flow.js ."
},
"dependencies": {
"funfix-core": "0.0.0-development"
"funfix-core": "^6.0.1"
},
"files": [
"dist",
Expand Down Expand Up @@ -69,4 +69,4 @@
"option",
"either"
]
}
}
10 changes: 5 additions & 5 deletions packages/funfix-types/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "funfix-types",
"description": "Sub-package of Funfix defining type classes inspired by Haskell's standard library",
"version": "0.0.0-development",
"version": "6.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
Expand All @@ -18,9 +18,9 @@
"copy-flow": "../../scripts/copy-flow.js ."
},
"dependencies": {
"funfix-core": "0.0.0-development",
"funfix-effect": "0.0.0-development",
"funfix-exec": "0.0.0-development"
"funfix-core": "^6.0.1",
"funfix-effect": "^6.0.1",
"funfix-exec": "^6.0.1"
},
"files": [
"dist",
Expand Down Expand Up @@ -71,4 +71,4 @@
"option",
"either"
]
}
}
12 changes: 6 additions & 6 deletions packages/funfix/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "funfix",
"description": "Functional Programming library for JavaScript, TypeScript and Flow",
"version": "0.0.0-development",
"version": "6.0.1",
"keywords": [
"fp",
"functional-programming",
Expand Down Expand Up @@ -46,10 +46,10 @@
"copy-flow": "../../scripts/copy-flow.js ."
},
"dependencies": {
"funfix-core": "0.0.0-development",
"funfix-effect": "0.0.0-development",
"funfix-exec": "0.0.0-development",
"funfix-types": "0.0.0-development"
"funfix-core": "^6.0.1",
"funfix-effect": "^6.0.1",
"funfix-exec": "^6.0.1",
"funfix-types": "^6.0.1"
},
"nyc": {
"include": [
Expand All @@ -72,4 +72,4 @@
"sourceMap": true,
"instrument": true
}
}
}

0 comments on commit be0a3c6

Please sign in to comment.