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

grunt-checkbranch

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-checkbranch

Checks that we are on a correct git branch before proceeding.

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14
decreased by-39.13%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-checkbranch

Checks that we are on a correct git branch before proceeding.

Build Status

npm install grunt-checkbranch --save-dev

And in your Gruntfile:

grunt.loadNpmTasks('grunt-checkbranch');

Usage

Include the task as one of your multitasks, optionally passing the desired branch (default: master) after a colon, e.g.:

grunt.registerTask("deploy", ["test", "checkbranch:develop", "copy"]

Pass a "negated" branch where further tasks are not allowed by prepending an exclamation mark:

grunt.registerTask("deploy", ["test", "checkbranch:!master", "copy"]

To skip checks:

grunt --no-checkbranch

To force checks (disables skipping), add the third param with true:

grunt.registerTask("deploy", ["test", "checkbranch:develop:true", "copy"]

Contributors

Keywords

FAQs

Package last updated on 28 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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