我有六个与此类似的Gulp任务:
gulp.task('scripts', function() {
return gulp.src([
'public_html/assets/plugins/zeroclipboard/ZeroClipboard.min.js',
'public_html/assets/plugins/redactor/redactor.min.js',
'public_html/assets/libraries/autobahn.min.js'
])
.pipe(concat('localStatic.js'))
.pipe(gulp.dest('public_html/assets/dist/js/'))
.pipe(rename('localStatic.min.js'))
.pipe(uglify())
.pipe(gulp.dest('public_html/assets/dist/js'));
});
当我在终端中运行gulp
时,它只执行最后一个任务(或者至少只生成上一个任务中的JS文件)。
Gulp允许多项任务,对吧?为什么只执行文件中的最后一个任务?
答案 0 :(得分:1)
如果它们有不同的名称,您可以同时运行多个任务。
gulp.task('name', function() {})
gulp.task('of', function() {})
// ... task definitions
gulp.task('default', ['name', 'of', 'the', 'tasks', 'you', 'want', 'to','run']);
当您运行gulp
命令时,这将运行并行指定的所有任务。
您可以在docs
中详细了解任务依赖关系