dashboard
repositories
filestore
activity
search
login
黄瀚
/
gz-dyh
forked from
gzzfw/backEnd/gz-dyh
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
小程序是否可见控制
zhouxiantao
2024-09-25
c9dfc82c1b2a51a4961c0c8c955bc646acf6b8cb
[~huangh/gz-dyh.git]
/
dyh-service
/
dyh-mediate
/
src
/
main
/
resources
/
static
/
libs
/
sizzle_1.10.16
/
tasks
/
tag.js
1
2
3
4
5
6
7
8
9
"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() );
});
};