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

@crazyfactory/gitflow

Package Overview
Dependencies
Maintainers
10
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crazyfactory/gitflow - npm Package Compare versions

Comparing version 1.9.0 to 1.10.0

12

index.js

@@ -150,2 +150,14 @@ #!/usr/bin/env node

program
.command('soft-push')
.description('Perform soft push to trigger CI build')
.action(async () => {
try {
await git.bailIfNotGitDirectory();
await git.softPush();
} catch (e) {
console.log(e.message);
}
});
program.on('command:*', async (args) => {

@@ -152,0 +164,0 @@ const alias = args.shift();

@@ -245,2 +245,8 @@ const Configstore = require('configstore');

async function softPush() {
await exec('git commit --allow-empty -m "chore(ci): trigger build"');
await exec('git push origin HEAD');
}
async function startFeature(config, featureBranch) {

@@ -329,2 +335,3 @@ await doStash();

setConfig,
softPush,
startFeature,

@@ -331,0 +338,0 @@ startHotfix,

2

package.json

@@ -26,3 +26,3 @@ {

},
"version": "1.9.0"
"version": "1.10.0"
}

@@ -10,2 +10,5 @@ # Gitflow

### `$ gitflow alias <name> <cmd>`
Set `<cmd>` as an alias of `<name>` which you can run as `gitflow <name>`
### `$ gitflow set-config`

@@ -55,1 +58,4 @@ Set `project_name` and `sprint_number` for current path

- Switch local branch to `origin/master`
### `$ gitflow soft-push`
- Create an empty commit and push it
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