chore: Update package.json version to 1.0.21 and remove unused funding.yml file

This commit is contained in:
Mauro Balades 2024-07-21 22:00:17 +02:00
parent 74d9f7bbc8
commit 6733bf112c
4 changed files with 3 additions and 10 deletions

3
.github/FUNDING.yml vendored
View file

@ -1,3 +0,0 @@
# These are supported funding model platforms
github: trickypr

View file

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

View file

@ -74,11 +74,7 @@ async function unpackFirefoxSource(name: string): Promise<void> {
windowsPathToUnix(resolve(MELON_TMP_DIR, name)), windowsPathToUnix(resolve(MELON_TMP_DIR, name)),
'-C', '-C',
windowsPathToUnix(ENGINE_DIR), windowsPathToUnix(ENGINE_DIR),
].filter(Boolean) as string[], ].filter(Boolean) as string[]
{
// HACK: Use bash shell on windows to get a sane version of tar that works
shell: BASH_PATH || false,
}
) )
} }

View file

@ -72,7 +72,7 @@ function getPlatformOptimiseFlags(): string {
break break
} }
case 'win32': { case 'win32': {
optimiseFlags = `ac_add_options --enable-optimize="-clang:-march=x86-64 -clang:-msse3 -clang:-mtune=haswell -clang:-O3 -w"` optimiseFlags = `ac_add_options --enable-optimize="-clang:-march=x86-64-v3 -clang:-msse3 -clang:-mtune=haswell -clang:-O3 -w"`
break break
} }
} }