mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
Revert "update sass task"
This reverts commit 60742e49acd2fb1f4a0b4684c2d5d00f6628828c.
This commit is contained in:
@ -365,6 +365,11 @@ gulp.task('sass', function() {
|
|||||||
.pipe(gulp.dest('dist/bundles/'));
|
.pipe(gulp.dest('dist/bundles/'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gulp.task('fonts', function() {
|
||||||
|
return gulp.src(['ionic/fonts/**/*.ttf', 'ionic/fonts/**/*.woff'])
|
||||||
|
.pipe(gulp.dest('dist/fonts'));
|
||||||
|
});
|
||||||
|
|
||||||
require('./scripts/snapshot/snapshot.task')(gulp, argv, buildConfig);
|
require('./scripts/snapshot/snapshot.task')(gulp, argv, buildConfig);
|
||||||
|
|
||||||
gulp.task('karma', ['tests'], function() {
|
gulp.task('karma', ['tests'], function() {
|
||||||
@ -389,12 +394,10 @@ gulp.task('copy.ts', function() {
|
|||||||
gulp.task('copy.scss', function() {
|
gulp.task('copy.scss', function() {
|
||||||
return gulp.src([
|
return gulp.src([
|
||||||
'ionic/**/*.scss',
|
'ionic/**/*.scss',
|
||||||
'ionic/**/*.ttf',
|
|
||||||
'ionic/**/*.woff',
|
|
||||||
'!ionic/components/*/test/**/*',
|
'!ionic/components/*/test/**/*',
|
||||||
'!ionic/util/test/*'
|
'!ionic/util/test/*'
|
||||||
])
|
])
|
||||||
.pipe(gulp.dest('dist'));
|
.pipe(gulp.dest('dist/src/scss'));
|
||||||
})
|
})
|
||||||
|
|
||||||
gulp.task('copy.web-animations', function() {
|
gulp.task('copy.web-animations', function() {
|
||||||
|
Reference in New Issue
Block a user