我的 Gulp 文件中有 3 个任务必须按以下顺序运行:
clean
(删除/dist
文件夹中的所有内容)copy
(将多个文件复制到/dist
文件夹中)replace
/dist
(替换文件夹中某些文件中的一些字符串)
我已经阅读了所有其他帖子,我尝试过“运行序列”,但它不起作用,因为“替换”任务没有最后运行。我对“回调”的使用感到困惑。单独运行任务可以正常工作。
var gulp = require('gulp');
var runSequence = require('run-sequence');
gulp.task('runEverything', function(callback) {
runSequence('clean',
'copy',
'replace',
callback);
});
gulp.task('clean', function () {
return del(
'dist/**/*'
);
});
gulp.task('copy', function() {
gulp.src('node_modules/bootstrap/dist/**/*')
.pipe(gulp.dest('dist/vendor'))
//...
return gulp.src(['index.html', '404.html', '.htaccess'])
.pipe(gulp.dest('dist/'));
});
gulp.task('replace', function(){
gulp.src(['dist/index.php', 'dist/info.php'])
.pipe(replace('fakedomain.com', 'realdomain.com'))
.pipe(gulp.dest('dist'));
return gulp.src(['dist/config.php'])
.pipe(replace('foo', 'bar'))
.pipe(gulp.dest('dist'));
});
使用这 3 个任务的完整示例将不胜感激。谢谢你。