mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-07 17:05:33 +02:00
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
Some checks are pending
CI / general (push) Waiting to run
This commit is contained in:
parent
e91d11b419
commit
073adf331b
2 changed files with 5 additions and 1 deletions
|
@ -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": {
|
||||||
|
|
|
@ -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...')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue