Accessibility updates

This commit is contained in:
Jonathan Bobel
2024-05-29 14:53:27 -04:00
parent 40d62e5ff9
commit 4b622fcfdc
3 changed files with 12 additions and 5 deletions

View File

@@ -56,6 +56,10 @@ const copy = {
gtm: () => {
return src(paths.src + 'js/gtm_head.js')
.pipe(dest(paths.dist + 'js/'));
},
chart: () => {
return src(paths.src + 'js/chart.umd.js')
.pipe(dest(paths.dist + 'js/'));
}
};
@@ -201,7 +205,8 @@ const defaultTask = parallel(
),
uswds.compile,
uswds.copyAssets,
copy.gtm
copy.gtm,
copy.chart
)
);