commit before branch switch

This commit is contained in:
Jonathan Bobel
2024-05-15 14:48:46 -04:00
parent dcc7679380
commit ccfc1166a7
6 changed files with 30 additions and 29 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.js')
.pipe(dest(paths.dist + 'js/'));
}
};
@@ -125,7 +129,6 @@ const javascripts = () => {
paths.src + 'javascripts/date.js',
paths.src + 'javascripts/loginAlert.js',
paths.src + 'javascripts/dataVisualization.js',
paths.src + 'javascripts/chart.min.js',
paths.src + 'javascripts/chartTest.js',
paths.src + 'javascripts/main.js',
])
@@ -203,7 +206,8 @@ const defaultTask = parallel(
),
uswds.compile,
uswds.copyAssets,
copy.gtm
copy.gtm,
copy.chart
)
);