Skip to content

Commit

Permalink
adds understrap to copy-assets
Browse files Browse the repository at this point in the history
bacoords committed Jun 17, 2021
1 parent 2d9b277 commit 625b661
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -241,6 +241,11 @@ gulp.task( 'copy-assets', function( done ) {
.src( paths.node + '/font-awesome/scss/*.scss' )
.pipe( gulp.dest( paths.dev + '/sass/fontawesome' ) );

// Copy all Understrap SCSS files
gulp
.src( paths.node + '/understrap/scss/*.scss' )
.pipe( gulp.dest( paths.dev + '/sass/understrap' ) );

done();
} );

0 comments on commit 625b661

Please sign in to comment.