#295
- Blacklist the .seo.html files during partials task
- 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');
});
网友评论