agent-neckbeard 1.0.11 → 1.0.12
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.
Potentially problematic release.
This version of agent-neckbeard might be problematic. Click here for more details.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -405,7 +405,7 @@ try {
|
|
|
405
405
|
dependencies
|
|
406
406
|
});
|
|
407
407
|
await sandbox.files.write(SANDBOX_PATHS.packageJson, pkgJson);
|
|
408
|
-
const installResult = await runSandboxCommand(sandbox, `cd ${SANDBOX_HOME} && npm install --
|
|
408
|
+
const installResult = await runSandboxCommand(sandbox, `cd ${SANDBOX_HOME} && npm install --legacy-peer-deps`, SANDBOX_COMMAND_TIMEOUT_MS);
|
|
409
409
|
if (installResult.exitCode !== 0) {
|
|
410
410
|
const details = [
|
|
411
411
|
`Failed to install npm packages: ${Object.keys(dependencies).join(", ")}`,
|
package/dist/index.js
CHANGED
|
@@ -372,7 +372,7 @@ try {
|
|
|
372
372
|
dependencies
|
|
373
373
|
});
|
|
374
374
|
await sandbox.files.write(SANDBOX_PATHS.packageJson, pkgJson);
|
|
375
|
-
const installResult = await runSandboxCommand(sandbox, `cd ${SANDBOX_HOME} && npm install --
|
|
375
|
+
const installResult = await runSandboxCommand(sandbox, `cd ${SANDBOX_HOME} && npm install --legacy-peer-deps`, SANDBOX_COMMAND_TIMEOUT_MS);
|
|
376
376
|
if (installResult.exitCode !== 0) {
|
|
377
377
|
const details = [
|
|
378
378
|
`Failed to install npm packages: ${Object.keys(dependencies).join(", ")}`,
|