1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Ignore hermes output to avoid buffer issue

This commit is contained in:
sunnylqm 2019-12-18 18:04:08 +08:00
parent 201f11e770
commit dcea576fff

View File

@ -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' },
);
}
}