diff --git a/local-cli/src/bundle.js b/local-cli/src/bundle.js index 77d7b43..4d37351 100644 --- a/local-cli/src/bundle.js +++ b/local-cli/src/bundle.js @@ -128,6 +128,7 @@ async function compileHermesByteCode(bundleName, outputFolder) { : 'node_modules/hermesvm'; execSync( `${hermesPath}/${getHermesOSBin()}/hermes -emit-binary -out ${outputFolder}/${bundleName} ${outputFolder}/${bundleName} -O`, + { stdio: 'ignore' }, ); } }