From 83a6a1cc0bce48771658dc31d3571760f3e9a348 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 6 Dec 2014 10:41:07 +0000 Subject: [PATCH] chore(docs): fix docs/watch task name --- gulpfile.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 04b532c24d..8de5d6d3e3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -313,14 +313,16 @@ gulp.task('docs/app', function() { }); gulp.task('docs', ['docs/assets', 'docs/app', 'docs/dgeni']); -gulp.task('docs-watch', function() { - return gulp.watch('docs/app/**/*', ['docs-app']); +gulp.task('docs/watch', function() { + return gulp.watch('docs/app/**/*', ['docs/app']); }); var jasmine = require('gulp-jasmine'); gulp.task('docs/test', function () { return gulp.src('docs/**/*.spec.js') - .pipe(jasmine()); + .pipe(jasmine({ + includeStackTrace: true + })); }); var webserver = require('gulp-webserver');