summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorTrent Richardson <trentdrichardson@gmail.com>2013-07-29 05:01:09 -0700
committerTrent Richardson <trentdrichardson@gmail.com>2013-07-29 05:01:09 -0700
commit86ef1ba6372e4129fb47a912dae5927d0773a547 (patch)
tree95416a150b2d18422cda9cfdab73ac955c79b9c9 /Gruntfile.js
parenta3db17941e6f0b1d999c5fea123d185dff511d51 (diff)
parentfb927e8e2d19a899d467a55052a18383447aa12d (diff)
downloadjQuery-Timepicker-Addon-86ef1ba6372e4129fb47a912dae5927d0773a547.zip
jQuery-Timepicker-Addon-86ef1ba6372e4129fb47a912dae5927d0773a547.tar.gz
jQuery-Timepicker-Addon-86ef1ba6372e4129fb47a912dae5927d0773a547.tar.bz2
Merge pull request #618 from srvance/dev
Grunt cleanup, lint cleanup
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b184310..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',
@@ -70,7 +70,8 @@ module.exports = function(grunt) {
specs: 'test/*_spec.js',
vendor: [
'http://code.jquery.com/jquery-1.10.1.min.js',
- 'http://code.jquery.com/ui/1.10.3/jquery-ui.min.js'
+ 'http://code.jquery.com/ui/1.10.3/jquery-ui.min.js',
+ 'http://github.com/searls/jasmine-fixture/releases/1.0.5/1737/jasmine-fixture.js'
]
}
},
@@ -92,7 +93,7 @@ module.exports = function(grunt) {
jshintrc: 'test/.jshintrc'
},
src: ['test/**/*.js']
- },
+ }
},
watch: {
gruntfile: {
@@ -106,8 +107,8 @@ module.exports = function(grunt) {
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'jasmine']
- },
- },
+ }
+ }
});
// These plugins provide necessary tasks.