From 05cdc83492c502f432e631ef57eb7bbb0d0e768d Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 17 Aug 2016 09:23:29 -0700 Subject: [PATCH] chore(build): fix so --fast can be used with check-deploy etc (#2083) --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 063669f2e9..6a5150a280 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -441,7 +441,7 @@ gulp.task('add-example-boilerplate', function(done) { // copies boilerplate files to locations // where an example app is found gulp.task('_copy-example-boilerplate', function (done) { - if (!argv.fast) buildStyles(copyExampleBoilerplate, done); + return argv.fast ? done() : buildStyles(copyExampleBoilerplate, done); }); //Builds Angular 2 Docs CSS file from Bootstrap npm LESS source