summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 5035647d..696d43e9 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -6,7 +6,9 @@ var gulp = require('gulp'),
gulp.task('js', function() {
return gulp.src([
'js/main.js',
- 'js/components/**/*.js'
+ 'js/components/**/*.js',
+ 'js/services/**/*.js',
+ 'js/models/**/*.js'
])
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter('default'))