whoops fonts still used by bundles

This commit is contained in:
Tim Lancina
2015-12-10 20:34:13 -06:00
parent 52da3f3d30
commit d5597feac5

View File

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