如何将部分 HTML 排除在 cache 之外

返回导航

#295

  1. Blacklist the .seo.html files during partials task
  2. Copy the seo files afterwards into dist
gulp.task('partials', function () {
  return gulp.src([
      'src/**/*.html',
      '!src/**/*.seo.html'
    ])
    .pipe(gulp.dest('.tmp/src'))
    .pipe($.size());
});

gulp.task('copy', function () {
  return gulp.src([
      'src/**/*.seo.html'
    ])
    .pipe(gulp.dest('dist/'));
});

gulp.task('build', [
  'partials',
  'copy'
], function() {
    gulp.start('deploy');
});

返回导航

你可能感兴趣的:(如何将部分 HTML 排除在 cache 之外)