Robin Herbots 7 年 前
コミット
b913f6647d
1 ファイル変更4 行追加2 行削除
  1. 4 2
      Gruntfile.js

+ 4 - 2
Gruntfile.js

@@ -94,7 +94,9 @@ module.exports = function (grunt) {
         release: {
         release: {
             options: {
             options: {
                 bump: false,
                 bump: false,
-                commitMessage: 'Inputmask <%= version %>'
+                commit: false,
+                add: false,
+                tagName: 'Inputmask <%= version %>'
             }
             }
         },
         },
         nugetpack: {
         nugetpack: {
@@ -154,7 +156,7 @@ module.exports = function (grunt) {
     require('load-grunt-tasks')(grunt);
     require('load-grunt-tasks')(grunt);
 
 
     grunt.registerTask('publish', ['release', 'nugetpack', 'nugetpush']);
     grunt.registerTask('publish', ['release', 'nugetpack', 'nugetpush']);
-    grunt.registerTask('publishnext', function() {
+    grunt.registerTask('publishnext', function () {
         grunt.config('release.options.npmtag', "next");
         grunt.config('release.options.npmtag', "next");
         grunt.task.run('release');
         grunt.task.run('release');
     });
     });