Fixing problem with empty folders after "gulp dist" - Thx @alwizo

This commit is contained in:
koenemann 2016-10-14 11:00:17 +02:00
parent 5bdbe3a1fa
commit d17def2f2e
1 changed files with 1 additions and 1 deletions

View File

@ -220,6 +220,6 @@ gulp.task('copy-assets', function() {
// gulp dist
// Copies the files to the /dist folder for distributon
gulp.task('dist', function() {
gulp.src(['!sass','!bower_components', '!node_modules','!src','!dist','!bower.json', '!gulpfile.js', '!package.json', '*'])
gulp.src(['**/*','!sass','!bower_components', '!node_modules','!src','!dist','!bower.json', '!gulpfile.js', '!package.json', '*'])
.pipe(gulp.dest('dist/'))
});