increase yarn network-timeout

This commit is contained in:
Eugene Pankov
2022-02-23 22:15:15 +01:00
parent d1ac265d79
commit 76892c4f5c
2 changed files with 10 additions and 10 deletions

View File

@@ -9,18 +9,18 @@ sh.exec(`yarn patch-package`, { fatal: true })
log.info('deps', 'app')
sh.cd('app')
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.cd('..')
sh.cd('web')
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.exec(`yarn patch-package`, { fatal: true })
sh.cd('..')
vars.allPackages.forEach(plugin => {
log.info('deps', plugin)
sh.cd(plugin)
sh.exec(`yarn install --force`, { fatal: true })
sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true })
sh.cd('..')
})