mirror of
https://github.com/jquery/sizzle.git
synced 2025-12-28 04:43:44 +00:00
11 lines
284 B
JavaScript
11 lines
284 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() );
|
|
} );
|
|
};
|