summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorStephen Vance <steve@vance.com>2013-07-28 21:36:37 -0400
committerStephen Vance <steve@vance.com>2013-07-28 21:36:37 -0400
commit52028858d859ed5bebf20ca6dd6209571502c44c (patch)
tree14423bb1ff51fce0dc74bf8bf72b3b83ef4bc806 /Gruntfile.js
parent03dab46d9ea5387756658aa38c894835c7168d7b (diff)
downloadjQuery-Timepicker-Addon-52028858d859ed5bebf20ca6dd6209571502c44c.zip
jQuery-Timepicker-Addon-52028858d859ed5bebf20ca6dd6209571502c44c.tar.gz
jQuery-Timepicker-Addon-52028858d859ed5bebf20ca6dd6209571502c44c.tar.bz2
Minor gruntfile cleanup
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 565f292..89cf33c 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -20,7 +20,7 @@ module.exports = function(grunt) {
files: [
//{ src: 'src/index.html', dest: 'dist/index.html' },
{ src: 'src/<%= pkg.name %>.css', dest: 'dist/<%= pkg.name %>.css' },
- { src: 'src/i18n/jquery-ui-timepicker-*.js', dest: 'dist/i18n/', expand:true, flatten: true },
+ { src: 'src/i18n/jquery-ui-timepicker-*.js', dest: 'dist/i18n/', expand:true, flatten: true }
]
}
},
@@ -53,7 +53,7 @@ module.exports = function(grunt) {
dist: {
src: '<%= concat.dist.dest %>',
dest: 'dist/<%= pkg.name %>.min.js'
- },
+ }
},
cssmin: {
options: {
@@ -62,7 +62,7 @@ module.exports = function(grunt) {
dist: {
src: 'dist/<%= pkg.name %>.css',
dest: 'dist/<%= pkg.name %>.min.css'
- },
+ }
},
jasmine: {
src: 'src/<%= pkg.name %>.js',
@@ -93,7 +93,7 @@ module.exports = function(grunt) {
jshintrc: 'test/.jshintrc'
},
src: ['test/**/*.js']
- },
+ }
},
watch: {
gruntfile: {
@@ -107,8 +107,8 @@ module.exports = function(grunt) {
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'jasmine']
- },
- },
+ }
+ }
});
// These plugins provide necessary tasks.