Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tpham0/apple

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tpham0/apple - npm Package Compare versions

Comparing version 0.1.1-rc.0 to 1.0.0

24

CHANGELOG.md

@@ -0,1 +1,25 @@

# CHANGELOG
# @tpham0/apple-v1.0.0 (2020-12-17)
### Features
* **apple:** add add() method ([017da7a](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/017da7a5cc92ab2bc11164f4f456eaa7d064417d))
* **apple:** add divide() method ([7c874ef](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/7c874efbbdf533051058cc3a2b7740673ae61266))
* **apple:** add log() method ([c232897](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/c232897ac43474d1f966f09a69521c828a969b02))
* **apple:** add minus() method ([5647ace](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/5647ace215c02d2a8744379f53e54721076d4f65))
* **apple:** add times() method ([50a24f6](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/50a24f68df8b1b20171cc34f4f02df04d2d25304))
### Reverts
* **apple:** log() method ([6321a49](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/6321a494802445217b680054250c946b9dfcd6fe))
* **apple:** log() method ([83749cd](https://github.com/zlatanpham/monorepo-semantic-release-demo/commit/83749cd2f810fd60b5fb0ad5576e33c5c4dec78f))
### BREAKING CHANGES
* **apple:** Huge feature by adding add() method
# Change Log

@@ -2,0 +26,0 @@

@@ -12,6 +12,18 @@ 'use strict';

}
function times(a, b) {
return a * b;
}
function divide(a, b) {
return a / b;
}
function log(message) {
console.log(message);
}
exports.add = add;
exports.divide = divide;
exports.log = log;
exports.minus = minus;
exports.printMe = printMe;
exports.times = times;
//# sourceMappingURL=apple.cjs.development.js.map

2

dist/apple.cjs.production.min.js

@@ -1,2 +0,2 @@

"use strict";exports.add=function(t,n){return t+n},exports.minus=function(t,n){return t-n},exports.printMe=function(t){return t};
"use strict";exports.add=function(t,n){return t+n},exports.divide=function(t,n){return t/n},exports.log=function(t){console.log(t)},exports.minus=function(t,n){return t-n},exports.printMe=function(t){return t},exports.times=function(t,n){return t*n};
//# sourceMappingURL=apple.cjs.production.min.js.map
export declare function printMe(message: string): string;
export declare function add(a: number, b: number): number;
export declare function minus(a: number, b: number): number;
export declare function times(a: number, b: number): number;
export declare function divide(a: number, b: number): number;
export declare function log(message: string): void;

@@ -10,4 +10,13 @@ function printMe(message) {

}
function times(a, b) {
return a * b;
}
function divide(a, b) {
return a / b;
}
function log(message) {
console.log(message);
}
export { add, minus, printMe };
export { add, divide, log, minus, printMe, times };
//# sourceMappingURL=index.esm.js.map
{
"name": "@tpham0/apple",
"version": "0.1.1-rc.0+5647ace",
"version": "1.0.0",
"description": "apple package",

@@ -24,4 +24,3 @@ "sideEffects": false,

"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc