sliccy 1.6.0 → 1.6.1

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.
@@ -86,6 +86,8 @@ export function buildChromeLaunchArgs(options) {
86
86
  `--remote-debugging-port=${options.cdpPort}`,
87
87
  '--no-first-run',
88
88
  '--no-default-browser-check',
89
+ '--disable-crash-reporter',
90
+ '--disable-background-tracing',
89
91
  `--user-data-dir=${options.profile.userDataDir}`,
90
92
  ];
91
93
  if (options.profile.extensionPath) {
package/dist/cli/index.js CHANGED
@@ -464,6 +464,7 @@ async function main() {
464
464
  launchedBrowserProcess = spawn(chromePath, chromeArgs, {
465
465
  stdio: ['ignore', 'pipe', 'pipe'],
466
466
  detached: false,
467
+ env: { ...process.env, GOOGLE_CRASHPAD_DISABLE: '1' },
467
468
  });
468
469
  launchedBrowserLabel = chromeProfile.displayName;
469
470
  // Parse the actual CDP port from Chrome's stderr before piping output.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sliccy",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Browser-based coding agent with thin CLI server",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",