Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

tuxracer/grunt-branches

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-branches

Run specified task against all remote branches of a git submodule.

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-branches --save-dev

Then add this line to your project's Gruntfile.coffee:

grunt.loadNpmTasks 'grunt-branches'

Documentation

grunt.initConfig

  # ... other configs

  branches:
    foo:
      path: 'ext/foo'
      options:
        match: '^release/' # Only run task against branches that match this reg exp

  # ... other configs

To run the task 'b' on all remote branches of the submodule 'foo' run: grunt branches:foo:b

Or register a shortcut:

grunt.registerTask 'buildall', ['branches:foo:b']

Events

The following events are emitted and can be subscribed to using grunt.emit.on

  • branches.checkedout - params: branch, path
  • branches.commitinfo - params: branch, hash, path
  • branches.taskqueued - params: branch, path

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

License

Copyright (c) 2014, Derek Petersen

Licensed under the MIT license.

About

Run specified task against all branches of a git submodule

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published