@tpham0/apple
Advanced tools
Comparing version 0.0.1 to 0.1.0
@@ -6,4 +6,14 @@ # Change Log | ||
# [0.1.0](https://github.com/zlatanpham/monorepo-semantic-release-demo/compare/@tpham0/apple@0.0.1...@tpham0/apple@0.1.0) (2020-12-17) | ||
### Features | ||
- **apple:** add add() method ([017da7a](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/017da7a5cc92ab2bc11164f4f456eaa7d064417d)) | ||
### BREAKING CHANGES | ||
- **apple:** Huge feature by adding add() method | ||
## 0.0.1 (2020-12-17) | ||
**Note:** Version bump only for package @tpham0/apple |
@@ -6,4 +6,8 @@ 'use strict'; | ||
} | ||
function add(a, b) { | ||
return a + b; | ||
} | ||
exports.add = add; | ||
exports.printMe = printMe; | ||
//# sourceMappingURL=apple.cjs.development.js.map |
@@ -1,2 +0,2 @@ | ||
"use strict";exports.printMe=function(t){return t}; | ||
"use strict";exports.add=function(t,r){return t+r},exports.printMe=function(t){return t}; | ||
//# sourceMappingURL=apple.cjs.production.min.js.map |
export declare function printMe(message: string): string; | ||
export declare function add(a: number, b: number): number; |
function printMe(message) { | ||
return message; | ||
} | ||
function add(a, b) { | ||
return a + b; | ||
} | ||
export { printMe }; | ||
export { add, printMe }; | ||
//# sourceMappingURL=index.esm.js.map |
{ | ||
"name": "@tpham0/apple", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"description": "apple package", | ||
@@ -25,3 +25,3 @@ "sideEffects": false, | ||
}, | ||
"gitHead": "1f2904296887720b6de2deea4b253cc97ee10411" | ||
"gitHead": "3f667e6fd1926818c2172a45060fc0e733143114" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3101
28