mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-08 01:10:03 +02:00
chore: Update package.json version to 1.2.17 and exclude 'content' icons from branding-patch.ts
This commit is contained in:
parent
3e45a0de4f
commit
3d9309b967
2 changed files with 2 additions and 1 deletions
|
@ -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": {
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue