Привет всем.
Есть такая структура:
src
--pages
----index
------index.pug
----about
------about.pug
и gulp task:gulp.task('pug', function () {
return gulp.src('src/pages/**/*.pug')
.pipe(pug())
.pipe(gulp.dest('dist'))
});
На выходе получаю следующее:
dist
--index
----index.html
--about
----about.html
а нужно так:
dist
--index.html
--about.html
Подскажите, как добиться такой структуры в dist?