New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

branchforge

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

branchforge - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

6

dist/index.js

@@ -99,5 +99,9 @@ #!/usr/bin/env node

yield this.git.checkout(base);
// Create the new branch from base
yield this.git.checkoutLocalBranch(branchName);
// Merge the include branches
for (const include of includes) {
yield this.git.merge([include]);
// Check if the include branch exists remotely
const includeBranch = (yield this.branchExists(include)) ? include : `origin/${include}`;
yield this.git.merge([includeBranch]);
}

@@ -104,0 +108,0 @@ console.log(`Branch "${branchName}" has been rebuilt.`);

2

package.json
{
"name": "branchforge",
"version": "0.7.0",
"version": "0.8.0",
"private": false,

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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