Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/candy-chat/candy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weibel <michael.weibel@gmail.com>2014-01-06 21:05:45 +0400
committerMichael Weibel <michael.weibel@gmail.com>2014-01-06 21:05:45 +0400
commitd2f53f1e6fe9e68e180d95dbabdc50b6cd70120f (patch)
tree64dcb730cb287154c663c344a6109eb2c3331786 /Gruntfile.js
parent8f572cb350ae88d96a19be6a4bf9540a4e725f38 (diff)
Run jshint whenever a src file changes
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 90fca52..6755794 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -64,7 +64,7 @@ module.exports = function(grunt) {
watch: {
bundle: {
files: ['src/*.js', 'src/**/*.js'],
- tasks: ['concat:bundle', 'uglify:bundle', 'notify:bundle']
+ tasks: ['jshint', 'concat:bundle', 'uglify:bundle', 'notify:bundle']
},
libs: {
files: ['libs/*/**/*.js'],