From ef488b27c49cb9c2a022fae2772fa14cd194d9f1 Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Wed, 25 Nov 2015 16:35:36 -0600 Subject: [PATCH] chore(demos): ionic-site is now a sibling directory --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 68170021fd..b721b71158 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -181,7 +181,7 @@ gulp.task('serve', function() { }); gulp.task('clean', function(done) { - del(['dist/**', '!dist', '!dist/ionic-site', '!dist/ionic-site/**/*'], done); + del(['dist/**', '!dist'], done); }); function transpile(moduleType) { @@ -485,7 +485,7 @@ gulp.task('sass.demos:components', function() { ) .pipe(concat('app.css')) .pipe(autoprefixer(buildConfig.autoprefixer)) - .pipe(gulp.dest('dist/demos/component-docs/')); + .pipe(gulp.dest('../ionic-site/docs/v2/demos/component-docs/')); }); gulp.task('bundle.demos:api', ['build.demos'], function(done) {