File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = function ( grunt ) {
2
2
grunt . initConfig ( {
3
+ bump : {
4
+ options : {
5
+ files : [ 'package.json' ] ,
6
+ commit : true ,
7
+ commitMessage : 'Release v%VERSION%' ,
8
+ commitFiles : [ 'package.json' ] ,
9
+ createTag : true ,
10
+ tagName : '%VERSION%' ,
11
+ tagMessage : '' ,
12
+ push : true ,
13
+ pushTo : 'origin'
14
+ }
15
+ } ,
16
+
3
17
lintspaces : {
4
18
all : {
5
19
src : [ '*' ] ,
@@ -13,6 +27,7 @@ module.exports = function(grunt) {
13
27
}
14
28
} ) ;
15
29
30
+ grunt . loadNpmTasks ( 'grunt-bump' ) ;
16
31
grunt . loadNpmTasks ( 'grunt-lintspaces' ) ;
17
32
18
33
grunt . registerTask ( 'default' , [ 'lintspaces' ] ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sublime-snippets-js" ,
3
+ "version" : " 0.2.2" ,
3
4
"repository" : {
4
5
"type" : " git" ,
5
6
"url" : " https://github.com/zenorocha/sublime-snippets-js.git"
6
7
},
7
8
"devDependencies" : {
8
9
"grunt" : " 0.4.1" ,
10
+ "grunt-bump" : " 0.0.11" ,
9
11
"grunt-cli" : " 0.1.10" ,
10
12
"grunt-lintspaces" : " 0.2.203"
11
13
},
You can’t perform that action at this time.
0 commit comments