最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

gulp modifies gz-files during processing - Stack Overflow

programmeradmin1浏览0评论

gulp modifies gz-files during processing.

On version 5.0.0 for gz-files the original and encrypted have different file sizes and hashes. On version 4.0.2 there is no such problem

function build() {
    const sourceFile = "node_modules/mymodule/myfile.css.gz";
    const targetFile = "./wwwroot/production/css/themes/myfile.css.gz";

    console.log(`Original MD5: ${getHash(sourceFile)}`);
    return gulp.src(sourceFile, { buffer: true })
        .pipe(gulp.dest("./wwwroot/production/css/themes/"))
        .on('end', function() {
            console.log(`Copied file MD5: ${getHash(targetFile)}`);
        });
}

Original file MD5: 8b2225cc82b5b25928e00ad376b82708

Copied file MD5: 732a18c293222e7324b915d98dd6c13a

发布评论

评论列表(0)

  1. 暂无评论