Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 05cdc83

Browse files
chalinkwalrath
authored andcommitted
chore(build): fix so --fast can be used with check-deploy etc (#2083)
1 parent 68c15c1 commit 05cdc83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ gulp.task('add-example-boilerplate', function(done) {
441441
// copies boilerplate files to locations
442442
// where an example app is found
443443
gulp.task('_copy-example-boilerplate', function (done) {
444-
if (!argv.fast) buildStyles(copyExampleBoilerplate, done);
444+
return argv.fast ? done() : buildStyles(copyExampleBoilerplate, done);
445445
});
446446

447447
//Builds Angular 2 Docs CSS file from Bootstrap npm LESS source

0 commit comments

Comments
 (0)