中阅读更多关于任务依赖关系的信息。
我有六个类似的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中允许多个任务,对吗?为什么只执行文件中的最后一个任务?
可以同时运行多个任务,只要它们有不同的名称。
gulp.task('name', function() {})
gulp.task('of', function() {})
// ... task definitions
gulp.task('default', ['name', 'of', 'the', 'tasks', 'you', 'want', 'to','run']);
这将在运行gulp
命令时并行运行指定的所有任务。
你可以在文档