fix(aio): downgrade yarn to 1.0.2 temporarily (#19600)

PR Close #19600
This commit is contained in:
Alex Rickabaugh
2017-10-05 16:23:04 -07:00
committed by Chuck Jazdzewski
parent ccc25ee901
commit d45e3aa433
4 changed files with 3 additions and 8 deletions

View File

@ -17,7 +17,7 @@ var PROJECT_ROOT = path.join(__dirname, '../../');
// tslint:disable:no-console
function checkNodeModules(logOutput, purgeIfStale) {
var yarnCheck = childProcess.spawnSync(
'./node_modules/.bin/yarn check --integrity',
'yarn check --integrity',
{shell: true, cwd: path.resolve(__dirname, '../..')});
var nodeModulesOK = yarnCheck.status === 0;