mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
fix(): fix package task not finishing
This commit is contained in:
@ -424,7 +424,13 @@ gulp.task('src', function(done){
|
|||||||
|
|
||||||
gulp.task('src.release', function(done) {
|
gulp.task('src.release', function(done) {
|
||||||
IS_RELEASE = true;
|
IS_RELEASE = true;
|
||||||
gulp.start('src', done);
|
runSequence(
|
||||||
|
'clean',
|
||||||
|
'copy.libs',
|
||||||
|
['bundle', 'sass', 'fonts', 'copy.scss'],
|
||||||
|
'transpile.typecheck',
|
||||||
|
done
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('package', ['src.release'], function(done){
|
gulp.task('package', ['src.release'], function(done){
|
||||||
|
Reference in New Issue
Block a user