使用gulp-minify-html和gulp-html-replace一起使用

时间:2015-06-23 08:21:08

标签: gulp

我正在使用Gulp与[TestMethod] [TestCategory("Rimi Change card page")] public void Rimi_4444_Change_Card_and_Assert() { //Web Address using (IE ie = new IE(this.Rimi)) { //IE ie = new IE(RimiChangeCard); ie.BringToFront(); ie.ShowWindow(WatiN.Core.Native.Windows.NativeMethods.WindowShowStyle.Maximize); ie.TextField(Find.ById("NewCardOrAccountNumber")).TypeText("9440385200600000020"); gulp-minify-html

gulp-html-replace

但是,HTML不会替换我使用任务var minifyhtml = require('gulp-minify-html'); var htmlreplace = require('gulp-html-replace'); var dev_paths = { HTML: dev + '/**/*.html' }; var prod_paths = { RELATIVE_CSS: ['css/bootstrap.css', 'css/font-awesome.css', 'css/c3.css', 'css/main.css'], }; //Compress HTML gulp.task('minify-html', function () { var opts = { empty: true, comments: true }; return gulp.src(dev_paths.HTML) .pipe(minifyhtml(opts)) .pipe(gulp.dest(prod + '/')); }); //Add call to the JS and CSS in the HTML files gulp.task('replace-files', function() { gulp.src(dev_paths.HTML) .pipe(htmlreplace({ 'css': prod_paths.RELATIVE_CSS, 'js': 'js/script.js' })) .pipe(gulp.dest('public/prod/')); }); gulp.task('prod',['replace-files','minify-html'], function(){ }) 指定的CSS和JS文件。当我在没有任务replace-files的情况下运行gulp时,它可以正常工作。

有谁知道为什么同时使用minify-htmlreplace-files这两项任务无效? 谢谢。

1 个答案:

答案 0 :(得分:1)

由于任务并行运行,很可能是“minify-html”'任务在“替换文件”之前运行。任务完成。

尝试使用run-sequence确保任务按所需顺序运行。