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

@ -1,6 +1,6 @@
{ {
"name": "@zen-browser/surfer", "name": "@zen-browser/surfer",
"version": "1.2.15", "version": "1.2.17",
"description": "Simplifying building firefox forks!", "description": "Simplifying building firefox forks!",
"main": "index.js", "main": "index.js",
"bin": { "bin": {

View file

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