Skip to content

Commit

Permalink
Fix issue with css-library css not copying
Browse files Browse the repository at this point in the history
  • Loading branch information
powellkerry committed Nov 14, 2024
1 parent 5a7c186 commit 960dbf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/gulp/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ gulp.task('copy-web-components-css', function (done) {
});

gulp.task('copy-css-library', function (done) {
console.log('copying web-components CSS');
console.log('copying css-library CSS');
var stream = gulp.src('./node_modules/@department-of-veterans-affairs/css-library/dist/stylesheets/*.css')
.pipe(gulp.dest('src/assets/stylesheets/'));

Expand All @@ -27,5 +27,6 @@ gulp.task('copy-css-library', function (done) {

gulp.task(task, gulp.series(
'copy-formation-css',
'copy-web-components-css'
'copy-web-components-css',
'copy-css-library'
));

0 comments on commit 960dbf6

Please sign in to comment.