mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
Merge branch 'master' into alpha38
This commit is contained in:
11
gulpfile.js
11
gulpfile.js
@ -354,6 +354,17 @@ gulp.task('copy.web-animations', function() {
|
||||
.pipe(gulp.dest('dist/js'));
|
||||
})
|
||||
|
||||
gulp.task('src.link', function(done) {
|
||||
watch(['/ionic/**/*.ts', 'ionic/**/*.scss'], function(file) {
|
||||
gulp.start('src');
|
||||
});
|
||||
|
||||
|
||||
watch('demos/**/*', function() {
|
||||
gulp.start('demos:all');
|
||||
});
|
||||
})
|
||||
|
||||
gulp.task('src', function(done){
|
||||
runSequence(
|
||||
'clean',
|
||||
|
Reference in New Issue
Block a user