Skip to content

Commit

Permalink
Merge branch 'main' into 3478-evaluate-to-replace-npm-run-all-by-npm-…
Browse files Browse the repository at this point in the history
…run-all2
  • Loading branch information
mfranzke authored Dec 18, 2024
2 parents f090512 + fcbd8d6 commit 77c8226
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/foundations/scripts/local/generate-icon-overview.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable @typescript-eslint/no-unsafe-call */

/*
* This script can be used to update the icon overview for foundation testing.
*/
Expand Down Expand Up @@ -32,8 +30,10 @@ const generateIconOverview = () => {
<body>
<div class="icons-overview-container">
${ALL_ICONS.map(
(icon) => `
${
/* eslint-disable-next-line @typescript-eslint/no-unsafe-call */
ALL_ICONS.map(
(icon) => `
<div data-spacing="small" class="db-card">
<span
aria-hidden="true"
Expand All @@ -47,7 +47,8 @@ data-semantic="informational"
>${icon}</span
>
</div>`
).join('\n')}
).join('\n')
}
</div>
</body>
</html>`;
Expand Down

0 comments on commit 77c8226

Please sign in to comment.