gulp-rev-replace子文件夹中的HTML文件

时间:2015-10-07 21:03:30

标签: javascript gulp gulp-rev

我想知道如何让gulp-rev-replace用子文件夹中HTML文件中的相同哈希替换文件引用。考虑以下文件结构

  • 的index.html
  • 子文件夹
    • 的index.html
  • 脚本
    • main.js
  • 样式
    • main.scss

以下html声明:

的index.html:

<!-- build:css styles/main.css -->
<link rel="stylesheet" href="/bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->

子文件夹/ index.html中:

<!-- build:css ../styles/main.css -->
<link rel="stylesheet" href="/bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="../styles/main.css">
<!-- endbuild -->

以下我的Gulpfile

gulp.task('html', ['styles'], () => {
  const assets = $.useref.assets({searchPath: ['.tmp', 'app', '.']});

  return gulp.src('app/**/*.html')
    .pipe(assets)
    .pipe($.if('*.js', $.uglify()))
    .pipe($.if('*.css', $.minifyCss({compatibility: '*'})))
    .pipe($.rev())
    .pipe(assets.restore())
    .pipe($.useref())
    .pipe($.revReplace())
    .pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true})))
    .pipe(gulp.dest('dist'));
});

index.html中的样式链接块将被替换为正确的缩小和散列样式表引用。 subfolder/index.html中的相同块将改为获得完全不同的散列样式表引用。但是,它确实使样式表的路径正确。

我是否错误地设置了Gulpfile?

1 个答案:

答案 0 :(得分:0)

借助此separate answer计算出来。我最终将每个HTML文件中的样式引用设置为app目录的根目录,并提供3个目录进行搜索:

<!-- build:css({.tmp,app,.}) /styles/main.css -->
<link rel="stylesheet" href="/bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="/styles/main.css">
<!-- endbuild -->

哪个与提供给gulp-useref

的三个目录相匹配
const assets = $.useref.assets({searchPath: ['.tmp', 'app', '.']});