@arclamp/bar
Advanced tools
Comparing version 0.5.0 to 0.6.0
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="0.6.0"></a> | ||
# [0.6.0](https://github.com/arclamp/lerna-tutorial2/compare/v0.5.0...v0.6.0) (2018-05-09) | ||
### Features | ||
* add greater() function ([ca3f46d](https://github.com/arclamp/lerna-tutorial2/commit/ca3f46d)) | ||
<a name="0.5.0"></a> | ||
@@ -8,0 +19,0 @@ # [0.5.0](https://github.com/arclamp/lerna-tutorial2/compare/v0.4.0...v0.5.0) (2018-04-11) |
@@ -17,2 +17,6 @@ function add (x, y) { | ||
function greater (x, y) { | ||
return x > y; | ||
} | ||
module.exports = { | ||
@@ -22,3 +26,4 @@ add: add, | ||
multiply: multiply, | ||
divide: divide | ||
divide: divide, | ||
greater: greater | ||
}; |
{ | ||
"name": "@arclamp/bar", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
1698
22