1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-29 20:50:58 +01:00

Revert "only use before pack on snap build"

This reverts commit 26d93f430b4d75e05c30712d4f7ff5458c76cf43.
This commit is contained in:
Jake Fink 2025-01-14 23:49:02 -05:00
parent 26d93f430b
commit 7b01f3704b
No known key found for this signature in database
GPG Key ID: FD482F8453480035
2 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@
"output": "dist",
"app": "build"
},
"beforePack": "scripts/before-pack.js",
"afterSign": "scripts/after-sign.js",
"afterPack": "scripts/after-pack.js",
"asarUnpack": ["**/*.node"],
@ -251,8 +252,7 @@
}
}
],
"stagePackages": ["default"],
"beforePack": "scripts/before-pack.js"
"stagePackages": ["default"]
},
"protocols": [
{

View File

@ -1,6 +1,7 @@
/* eslint-disable @typescript-eslint/no-require-imports, no-console */
const path = require("path");
const { inspect } = require("util");
const { Platform } = require("electron-builder");
const fse = require("fs-extra");