From c6f406f03b53cb6948afdd4720e54b134e463650 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 15 Feb 2014 20:46:30 +0000 Subject: chore(doc-gen): add jshint checking to examples and tests --- docs/gulpfile.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/gulpfile.js b/docs/gulpfile.js index de1c5053..124e2348 100644 --- a/docs/gulpfile.js +++ b/docs/gulpfile.js @@ -1,5 +1,6 @@ var gulp = require('gulp'); var concat = require('gulp-concat'); +var jshint = require('gulp-jshint'); var bower = require('bower'); var docGenerator = require('dgeni'); var merge = require('event-stream').merge; @@ -38,7 +39,15 @@ gulp.task('doc-gen', function() { return docGenerator('docs.config.js').generateDocs(); }); +// JSHint the example and protractor test files +gulp.task('jshint', ['doc-gen'], function() { + gulp.src([outputFolder + '/ptore2e/**/*.js', outputFolder + '/examples/**/*.js']) + .pipe(jshint()) + .pipe(jshint.reporter('jshint-stylish')) + .pipe(jshint.reporter('fail')); +}); + // The default task that will be run if no task is supplied -gulp.task('default', ['assets', 'doc-gen', 'build-app']); +gulp.task('default', ['assets', 'doc-gen', 'build-app', 'jshint']); -- cgit v1.2.3