1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

Merge branch 'main' into neuronull/reapply-debug-builds-debug-log-level

This commit is contained in:
neuronull
2025-12-10 08:21:46 -07:00
249 changed files with 10627 additions and 4645 deletions

View File

@@ -10,12 +10,12 @@ const args = args.join(' ');
if (isRelease) {
console.log('Building release mode.');
execSync(`napi build --platform --js false ${args}`, { stdio: 'inherit'});
execSync(`napi build --platform --no-js ${args}`, { stdio: 'inherit'});
} else {
console.log('Building debug mode.');
execSync(`napi build --platform --js false ${args}`, {
execSync(`napi build --platform --no-js ${args}`, {
stdio: 'inherit',
env: { ...process.env, RUST_LOG: 'debug' }
});