mirror of
https://github.com/jquery/sizzle.git
synced 2025-12-28 04:43:44 +00:00
10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
"use strict";
|
|
|
|
var exec = require( "child_process" ).exec;
|
|
|
|
module.exports = function( grunt ) {
|
|
grunt.registerTask( "tag", "Tag the specified version", function( version ) {
|
|
exec( "git tag " + version, this.async() );
|
|
} );
|
|
};
|