@tpham0/orange
Advanced tools
Comparing version 0.0.3-rc.0 to 1.0.0
@@ -0,1 +1,10 @@ | ||
# CHANGELOG | ||
# @tpham0/orange-v1.0.0 (2020-12-17) | ||
### Features | ||
* **orange:** add sum() method ([002b1a0](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/002b1a05ed7174b2bcdb0d8d51c9d3d8467671ca)) | ||
# Change Log | ||
@@ -2,0 +11,0 @@ |
export declare function callMe(message: string): void; | ||
export declare function sum(list: number[]): number; |
@@ -1,2 +0,2 @@ | ||
import { printMe } from '@tpham0/apple'; | ||
import { printMe, add } from '@tpham0/apple'; | ||
@@ -6,4 +6,9 @@ function callMe(message) { | ||
} | ||
function sum(list) { | ||
return list.reduce(function (a, c) { | ||
return add(a, c); | ||
}, 0); | ||
} | ||
export { callMe }; | ||
export { callMe, sum }; | ||
//# sourceMappingURL=index.esm.js.map |
@@ -8,4 +8,10 @@ 'use strict'; | ||
} | ||
function sum(list) { | ||
return list.reduce(function (a, c) { | ||
return apple.add(a, c); | ||
}, 0); | ||
} | ||
exports.callMe = callMe; | ||
exports.sum = sum; | ||
//# sourceMappingURL=orange.cjs.development.js.map |
@@ -1,2 +0,2 @@ | ||
"use strict";var e=require("@tpham0/apple");exports.callMe=function(r){console.log(e.printMe(r))}; | ||
"use strict";var e=require("@tpham0/apple");exports.callMe=function(r){console.log(e.printMe(r))},exports.sum=function(r){return r.reduce((function(r,t){return e.add(r,t)}),0)}; | ||
//# sourceMappingURL=orange.cjs.production.min.js.map |
{ | ||
"name": "@tpham0/orange", | ||
"version": "0.0.3-rc.0+5647ace", | ||
"version": "1.0.0", | ||
"description": "Orange package", | ||
@@ -23,8 +23,7 @@ "sideEffects": false, | ||
"dependencies": { | ||
"@tpham0/apple": "^0.1.1-rc.0+5647ace" | ||
"@tpham0/apple": "^0.1.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "5647ace215c02d2a8744379f53e54721076d4f65" | ||
} | ||
} |
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
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
4180
34
1
0
+ Added@tpham0/apple@0.1.0(transitive)
- Removed@tpham0/apple@0.1.1-rc.0(transitive)
Updated@tpham0/apple@^0.1.0