chore: Update package.json version to 1.2.17 and exclude 'content' icons from branding-patch.ts

This commit is contained in:
Mauro Balades 2024-08-22 16:19:26 +02:00
parent 3e45a0de4f
commit 3d9309b967
2 changed files with 2 additions and 1 deletions

View file

@ -348,6 +348,7 @@ function addOptionalIcons(brandingPath: string, outputPath: string) {
const iconsContent = readdirSync(join(brandingPath, 'content'));
for (const icon of icons) {
if (icon.includes('content')) continue;
log.info(`Copying ${icon} to ${outputPath}`);
copyFileSync(join(brandingPath, icon), join(outputPath, icon));
}