chore(demos): ionic-site is now a sibling directory

This commit is contained in:
Drew Rygh
2015-11-25 16:35:36 -06:00
parent 8ef5d940ce
commit ef488b27c4

View File

@ -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) {