From ab5bb336b07359fda0449459f924e0d56cb457ed Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Mon, 14 Dec 2015 15:04:13 -0600 Subject: [PATCH] copy fonts to bundles as well as dist --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 159a0156ff..dd7ffe1b31 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -346,7 +346,8 @@ gulp.task('sass', function() { gulp.task('fonts', function() { return gulp.src(['ionic/**/*.ttf', 'ionic/**/*.woff']) - .pipe(gulp.dest('dist')); + .pipe(gulp.dest('dist')) + .pipe(gulp.dest('dist/bundles')); }); require('./scripts/snapshot/snapshot.task')(gulp, argv, buildConfig);