Gulpjs combine two tasks into a single task

后端 未结 11 1135
攒了一身酷
攒了一身酷 2020-12-24 01:56

I currently have two tasks, that both compile sass files. I would still like to concat the two directories into separate files but it seems that it would be more maintainabl

11条回答
  •  执笔经年
    2020-12-24 02:18

    I'm not sure if I understand question correctly, but if I do, this should be a simple solution:

    gulp.task('sass', ['bootstrap-sass', 'site-sass']);
    

提交回复
热议问题