@@ -20,7 +20,7 @@ module.exports = function(grunt) {
20
20
files : [
21
21
//{ src: 'src/index.html', dest: 'dist/index.html' },
22
22
{ src : 'src/<%= pkg.name %>.css' , dest : 'dist/<%= pkg.name %>.css' } ,
23
- { src : 'src/i18n/jquery-ui-timepicker-*.js' , dest : 'dist/i18n/' , expand :true , flatten : true } ,
23
+ { src : 'src/i18n/jquery-ui-timepicker-*.js' , dest : 'dist/i18n/' , expand :true , flatten : true }
24
24
]
25
25
}
26
26
} ,
@@ -53,7 +53,7 @@ module.exports = function(grunt) {
53
53
dist : {
54
54
src : '<%= concat.dist.dest %>' ,
55
55
dest : 'dist/<%= pkg.name %>.min.js'
56
- } ,
56
+ }
57
57
} ,
58
58
cssmin : {
59
59
options : {
@@ -62,7 +62,7 @@ module.exports = function(grunt) {
62
62
dist : {
63
63
src : 'dist/<%= pkg.name %>.css' ,
64
64
dest : 'dist/<%= pkg.name %>.min.css'
65
- } ,
65
+ }
66
66
} ,
67
67
jasmine : {
68
68
src : 'src/<%= pkg.name %>.js' ,
@@ -93,7 +93,7 @@ module.exports = function(grunt) {
93
93
jshintrc : 'test/.jshintrc'
94
94
} ,
95
95
src : [ 'test/**/*.js' ]
96
- } ,
96
+ }
97
97
} ,
98
98
watch : {
99
99
gruntfile : {
@@ -107,8 +107,8 @@ module.exports = function(grunt) {
107
107
test : {
108
108
files : '<%= jshint.test.src %>' ,
109
109
tasks : [ 'jshint:test' , 'jasmine' ]
110
- } ,
111
- } ,
110
+ }
111
+ }
112
112
} ) ;
113
113
114
114
// These plugins provide necessary tasks.
0 commit comments