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

nodegit-flow

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodegit-flow - npm Package Compare versions

Comparing version 0.1.13 to 0.1.14

2

package.json
{
"name": "nodegit-flow",
"version": "0.1.13",
"version": "0.1.14",
"description": "nodegit-flow contains gitflow methods that aren't include in the vanilla nodegit package",

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

@@ -29,3 +29,3 @@ # nodegit-flow

* [Flow.finishRelease](#finishfeaturerepository-name-options)
* [Flow.finishFeature](#finishfeaturerepository-name-options)
* [Flow.finishHotfix](#finishhotfixrepository-name-options)

@@ -37,3 +37,3 @@ * [Flow.finishRelease](#finishreleaserepository-name-options)

* [Flow.getDevelopBranch](#getdevelopbranchrepository)
* [Flow.getReleasePrefix](#getfeatureprefixrepository)
* [Flow.getFeaturePrefix](#getfeatureprefixrepository)
* [Flow.getHotfixPrefix](#gethotfixprefixrepository)

@@ -47,3 +47,3 @@ * [Flow.getMasterBranch](#getmasterbranchrepository)

* [Flow.open](#openrepository)
* [Flow.startRelease](#startfeaturerepository-name-options)
* [Flow.startFeature](#startfeaturerepository-name-options)
* [Flow.startHotfix](#starthotfixrepository-name)

@@ -53,4 +53,4 @@ * [Flow.startRelease](#startreleaserepository-name)

### finishRelease(repository, name, [options])
By default `finishFeature` will merge the feature branch into the develop branch and delete the feature branch. If successful, finishRelease will resolve with the merge commit. If a merge conflict occurs `finishRelease` will reject with the index of the conflict.
### finishFeature(repository, name, [options])
By default `finishFeature` will merge the feature branch into the develop branch and delete the feature branch. If successful, finishFeature will resolve with the merge commit. If a merge conflict occurs `finishFeature` will reject with the index of the conflict.

@@ -63,3 +63,3 @@ `options` Object

```javascript
NodeGit.Flow.finishRelease(
NodeGit.Flow.finishFeature(
repository,

@@ -136,2 +136,5 @@ 'my-feature'

### getFeaturePrefix(repository)
Returns the value stored within a repos git config with the key of `gitflow.prefix.feature`
### getReleasePrefix(repository)

@@ -174,3 +177,3 @@ Returns the value stored within a repos git config with the key of `gitflow.prefix.release`

### startRelease(repository, name, [options])
### startFeature(repository, name, [options])
`options` Object

@@ -185,3 +188,3 @@ * `sha` String

```javascript
NodeGit.Flow.startRelease(
NodeGit.Flow.startFeature(
repository,

@@ -188,0 +191,0 @@ 'my-feature',

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