Skip to content
Snippets Groups Projects
Commit fe61fe2e authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: add —ignore-engines to yarn install (#831)

parent bc18850e
No related branches found
Tags 39.176.2
No related merge requests found
......@@ -55,6 +55,7 @@ async function generateLockFile(tmpDir, logger) {
logger.debug(`Using yarn: ${cmd}`);
cmd += ' install';
cmd += ' --ignore-scripts';
cmd += ' --ignore-engines';
// TODO: Switch to native util.promisify once using only node 8
({ stdout, stderr } = await exec(cmd, {
cwd: tmpDir,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment