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

@auto/bump

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auto/bump - npm Package Compare versions

Comparing version 0.0.18 to 0.0.19

10

build/bump-version.js

@@ -9,4 +9,10 @@ import semver from 'semver';

if (options.zeroMajorBump === 'minor' && coercedVersion.major === 0 && type === 'major') {
return coercedVersion.inc('minor').version;
if (coercedVersion.major === 0) {
if (coercedVersion.minor === 0 && options.zeroBreakingChangeType === 'patch') {
return coercedVersion.inc('patch').version;
}
if (options.zeroBreakingChangeType === 'minor' && type !== 'patch') {
return coercedVersion.inc('minor').version;
}
}

@@ -13,0 +19,0 @@

6

package.json
{
"name": "@auto/bump",
"version": "0.0.18",
"version": "0.0.19",
"description": "",

@@ -26,4 +26,4 @@ "keywords": "",

"dependencies": {
"@auto/utils": "^0.0.12",
"@auto/workspaces": "^0.0.16",
"@auto/utils": "^0.0.13",
"@auto/workspaces": "^0.0.17",
"esm": "^3.0.82",

@@ -30,0 +30,0 @@ "semver": "^5.5.1"

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