Fix copy-assets

Not all assets are copied when `gulp copy-assets` is run
This commit is contained in:
Johan Nielsen 2018-03-05 22:43:47 +01:00 committed by GitHub
parent 832fc4b8a0
commit c95d6fbf4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -225,12 +225,11 @@ gulp.task('copy-assets', function() {
// Copy all Bootstrap SCSS files // Copy all Bootstrap SCSS files
gulp.src(paths.node + 'bootstrap/scss/**/*.scss') gulp.src(paths.node + 'bootstrap/scss/**/*.scss')
.pipe(gulp.dest(paths.dev + '/sass/bootstrap4')); .pipe(gulp.dest(paths.dev + '/sass/bootstrap4'));
return stream;
////////////////// End Bootstrap 4 Assets ///////////////////////// ////////////////// End Bootstrap 4 Assets /////////////////////////
// Copy all Font Awesome Fonts // Copy all Font Awesome Fonts
var stream = gulp.src(paths.node + 'font-awesome/fonts/**/*.{ttf,woff,woff2,eof,svg}') gulp.src(paths.node + 'font-awesome/fonts/**/*.{ttf,woff,woff2,eof,svg}')
.pipe(gulp.dest('./fonts')); .pipe(gulp.dest('./fonts'));
// Copy all Font Awesome SCSS files // Copy all Font Awesome SCSS files