Есть такая структура проекта:
├── app
├── css
├── js
├── index.html
├── .htaccess
├── sitemap.xsl
├── ...
├── dist
├── css
├── js
├── index.html
├── gulpfile.js
├── package.json
gulpfile.js:
...
gulp.task('html', function(){
gulp.src(path.app.html)
...
.pipe(gulp.dest(path.dist.html));
});
gulp.task('css, function(){
gulp.src(path.app.css)
...
.pipe(gulp.dest(path.dist.css));
});
...
Все переносится как положено из
app
в
dist
, но кроме файлов типа .htaccess, sitemap.xsl, readme.md, ...
Как можно донастроить gulp, чтобы и эти файлы автоматически переносились?
Чтобы получилась такая структура:
├── app
├── css
├── js
├── index.html
├── .htaccess
├── sitemap.xsl
├── ...
├── dist
├── css
├── js
├── index.html
├── .htaccess
├── sitemap.xsl
├── ...
├── gulpfile.js
├── package.json