1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

remove sandbox feature flag and refactor to use bool

This commit is contained in:
John Harrington
2025-12-02 10:03:03 -07:00
parent 618d1dc1cb
commit b58207e409
11 changed files with 36 additions and 39 deletions

View File

@@ -11,9 +11,4 @@ if (isRelease) {
process.env.RUST_LOG = 'debug';
}
const featuresArg = process.env.SANDBOX_BUILD === '1' ? '--features sandbox' : '';
if (featuresArg) {
console.log('Building with sandbox feature enabled.');
}
execSync(`napi build --platform --js false ${featuresArg}`, { stdio: 'inherit', env: process.env });
execSync(`napi build --platform --js false`, { stdio: 'inherit', env: process.env });