From 960dbf6807af30a9de815ec3971db7efe1cf1f37 Mon Sep 17 00:00:00 2001 From: Kerry Powell <1776069+powellkerry@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:32:17 -0700 Subject: [PATCH] Fix issue with css-library css not copying --- config/gulp/css.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/gulp/css.js b/config/gulp/css.js index ea67ccb94..3e3353edc 100644 --- a/config/gulp/css.js +++ b/config/gulp/css.js @@ -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/')); @@ -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' ));