bump version to 1.9.13 and add early exit for SURFER_MOZCONFIG_ONLY environment variable
Some checks are pending
CI / general (push) Waiting to run

This commit is contained in:
mr. M 2025-01-27 01:10:01 +01:00
parent e91d11b419
commit 073adf331b
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
2 changed files with 5 additions and 1 deletions

View file

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

View file

@ -170,6 +170,10 @@ export const build = async (options: Options): Promise<void> => {
if (!options.skipPatchCheck) await patchCheck() if (!options.skipPatchCheck) await patchCheck()
await applyConfig(prettyHost) await applyConfig(prettyHost)
if (process.env.SURFER_MOZCONFIG_ONLY) {
log.info('Mozconfig applied. Exiting...')
process.exit(0)
}
log.info('Starting build...') log.info('Starting build...')