From c1959cfef39afc58ccd67ef74530c56eac185dbb Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Wed, 30 Sep 2015 12:49:31 -0500 Subject: [PATCH] chore(demos): add docs demo build task --- gulpfile.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index bb764afb95..44f2681433 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -386,6 +386,12 @@ gulp.task('demos', function(){ } }) +gulp.task('copy.docs-demo', function () { + return gulp + .src('dist/demos/component-docs/*') + .pipe(gulp.dest('dist/ionic-site/docs/v2/components/demo/')) +}) + gulp.task('publish', function(done) { var version = flags.version; var ngVersion = flags.ngVersion;