agent-neckbeard 1.0.9 → 1.0.10
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
|
@@ -362,7 +362,7 @@ try {
|
|
|
362
362
|
dependencies
|
|
363
363
|
});
|
|
364
364
|
await sandbox.files.write(SANDBOX_PATHS.packageJson, pkgJson);
|
|
365
|
-
const installResult = await sandbox.commands.run(`cd ${SANDBOX_HOME} && npm install`, { timeoutMs: SANDBOX_COMMAND_TIMEOUT_MS });
|
|
365
|
+
const installResult = await sandbox.commands.run(`cd ${SANDBOX_HOME} && npm install --ignore-optional`, { timeoutMs: SANDBOX_COMMAND_TIMEOUT_MS });
|
|
366
366
|
if (installResult.exitCode !== 0) {
|
|
367
367
|
throw new DeploymentError(`Failed to install external packages: ${installResult.stderr}`);
|
|
368
368
|
}
|
package/dist/index.js
CHANGED
|
@@ -329,7 +329,7 @@ try {
|
|
|
329
329
|
dependencies
|
|
330
330
|
});
|
|
331
331
|
await sandbox.files.write(SANDBOX_PATHS.packageJson, pkgJson);
|
|
332
|
-
const installResult = await sandbox.commands.run(`cd ${SANDBOX_HOME} && npm install`, { timeoutMs: SANDBOX_COMMAND_TIMEOUT_MS });
|
|
332
|
+
const installResult = await sandbox.commands.run(`cd ${SANDBOX_HOME} && npm install --ignore-optional`, { timeoutMs: SANDBOX_COMMAND_TIMEOUT_MS });
|
|
333
333
|
if (installResult.exitCode !== 0) {
|
|
334
334
|
throw new DeploymentError(`Failed to install external packages: ${installResult.stderr}`);
|
|
335
335
|
}
|