sandboxbox 3.0.44 → 3.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/sandbox.js +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandboxbox",
3
- "version": "3.0.44",
3
+ "version": "3.0.45",
4
4
  "description": "Lightweight process containment sandbox for CLI tools - Playwright, Claude Code, and more. Pure Node.js, no dependencies.",
5
5
  "type": "module",
6
6
  "main": "cli.js",
package/utils/sandbox.js CHANGED
@@ -1,4 +1,4 @@
1
- import { mkdtempSync, rmSync, cpSync, existsSync, mkdirSync, writeFileSync, symlinkSync, realpathSync, readFileSync } from 'fs';
1
+ import { mkdtempSync, rmSync, cpSync, existsSync, mkdirSync, writeFileSync, symlinkSync, realpathSync, readFileSync, appendFileSync } from 'fs';
2
2
  import { tmpdir, homedir, platform } from 'os';
3
3
  import { join, resolve, dirname } from 'path';
4
4
  import { fileURLToPath } from 'url';
@@ -243,8 +243,7 @@ node_modules/
243
243
  console.log(`🔍 Debug: Bundled settings not found at ${bundledSettingsPath}`);
244
244
  }
245
245
  }
246
-
247
- // No host settings fallback - only bundled settings used
246
+ }
248
247
 
249
248
  // Optimize cache directory handling - use symlinks instead of copying
250
249
  const hostCacheDir = join(homedir(), '.cache');