Merge branch 'main' of https://github.com/GSA/notifications-admin into 1484-dashboard-visualizations

# Conflicts:
#	package-lock.json
#	package.json
This commit is contained in:
Jonathan Bobel
2024-07-23 11:39:49 -04:00
40 changed files with 2039 additions and 1438 deletions

View File

@@ -55,10 +55,6 @@ 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/'));
}
};
@@ -154,9 +150,8 @@ const images = () => {
paths.toolkit + 'images/**/*',
paths.govuk_frontend + 'assets/images/**/*',
paths.src + 'images/**/*',
paths.src + 'img/**/*',
paths.template + 'assets/images/**/*'
paths.src + 'img/**/*'
// paths.templates + 'assets/images/**/*'
])
.pipe(dest(paths.dist + 'images/'))
};
@@ -207,8 +202,7 @@ const defaultTask = parallel(
),
uswds.compile,
uswds.copyAssets,
copy.gtm,
copy.chart
copy.gtm
)
);