我的目标是将最新的 git commit 附加到我的index.html
文件中。
以下任务成功返回最新的 git 哈希(使用gulp-git):
var git = require('gulp-git');
gulp.task('hash', function() {
git.revParse({args:'--short HEAD'}, function (err, hash) {
return hash;
});
});
以下任务构建我的 HTML:
var inject = require('inject-string');
gulp.task('html', function () {
return gulp.src('app/index.html')
.pipe(inject.append('append git hash here!'))
.pipe(gulp.dest('dist'))
});
这成功地附加了一个字符串,index.html
但我如何将hash
任务的返回值注入到html
?