diff --git a/scripts/install-deps.mjs b/scripts/install-deps.mjs index 6ea9996f..9e1d4e62 100755 --- a/scripts/install-deps.mjs +++ b/scripts/install-deps.mjs @@ -21,6 +21,8 @@ vars.allPackages.forEach(plugin => { log.info('deps', plugin) sh.cd(plugin) sh.exec(`yarn install --force --network-timeout 1000000`, { fatal: true }) + // Some native packages might fail to build before patch-package gets a chance to run via postinstall + sh.exec(`yarn postinstall`, { fatal: false }) sh.cd('..') })