From d5597feac556913b17b071004c91122878f20b4f Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Thu, 10 Dec 2015 20:34:13 -0600 Subject: [PATCH] whoops fonts still used by bundles --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 125b1daa3f..98ae5452cc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -366,8 +366,8 @@ gulp.task('sass', function() { }); gulp.task('fonts', function() { - return gulp.src(['ionic/fonts/**/*.ttf', 'ionic/fonts/**/*.woff']) - .pipe(gulp.dest('dist/fonts')); + return gulp.src(['ionic/**/*.ttf', 'ionic/**/*.woff']) + .pipe(gulp.dest('dist')); }); require('./scripts/snapshot/snapshot.task')(gulp, argv, buildConfig); @@ -397,7 +397,7 @@ gulp.task('copy.scss', function() { '!ionic/components/*/test/**/*', '!ionic/util/test/*' ]) - .pipe(gulp.dest('dist/src/scss')); + .pipe(gulp.dest('dist')); }) gulp.task('copy.web-animations', function() {