summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorHendrik Leppelsack <hendrik@leppelsack.de>2015-10-29 11:05:48 +0100
committerHendrik Leppelsack <hendrik@leppelsack.de>2015-10-30 14:20:57 +0100
commit0ba8c9a0a054e23f03b82b6fd0132ee7a766c565 (patch)
tree4aee57bbfe8cffd38572e7389434aab7aae83357 /gulpfile.js
parent34b1aad957d31808707a6d451cfc7963f4b3d471 (diff)
implement jcard support
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'))