Fixing problem with empty folders after "gulp dist" - Thx @alwizo
This commit is contained in:
parent
5bdbe3a1fa
commit
d17def2f2e
|
@ -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/'))
|
||||
});
|
Reference in New Issue