11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
![]() |
"use strict";
|
||
|
|
||
|
var exec = require( "child_process" ).exec;
|
||
|
|
||
|
module.exports = function( grunt ) {
|
||
|
grunt.registerTask( "commit", "Add and commit changes", function( message ) {
|
||
|
// Always add dist directory
|
||
|
exec( "git add dist && git commit -m " + message, this.async() );
|
||
|
});
|
||
|
};
|