@@ -15,7 +15,7 @@ module.exports = function(grunt) {
15
15
{
16
16
expand : true , // Enable dynamic expansion.
17
17
cwd : 'src/' , // Src matches are relative to this path.
18
- src : [ 'json-patch-queue .js' ] , // Actual pattern(s) to match.
18
+ src : [ 'json-patch-ot .js' ] , // Actual pattern(s) to match.
19
19
dest : 'dist/' , // Destination path prefix.
20
20
ext : '.min.js' , // Dest filepaths will have this extension.
21
21
extDot : 'first' // Extensions in filenames begin after the first dot
@@ -25,10 +25,10 @@ module.exports = function(grunt) {
25
25
} ,
26
26
bump : {
27
27
options : {
28
- files : [ 'package.json' , 'bower.json' ] ,
28
+ files : [ 'package.json' , 'bower.json' , 'src/*' ] ,
29
29
commit : true ,
30
30
commitMessage : '%VERSION%' ,
31
- commitFiles : [ 'package.json' , 'bower.json' ] ,
31
+ commitFiles : [ 'package.json' , 'bower.json' , 'index.d.ts' , 'src/*' ] ,
32
32
createTag : true ,
33
33
tagName : '%VERSION%' ,
34
34
tagMessage : 'Version %VERSION%' ,
@@ -42,4 +42,4 @@ module.exports = function(grunt) {
42
42
} ) ;
43
43
grunt . loadNpmTasks ( 'grunt-contrib-uglify' ) ;
44
44
grunt . loadNpmTasks ( 'grunt-bump' ) ;
45
- } ;
45
+ } ;
0 commit comments