Fix a typo in the script

Summary:
I presume this was the intended meaning. Not sure how it's different from the stack though.
Closes https://github.com/facebook/prepack/pull/1611

Reviewed By: trueadm

Differential Revision: D7321041

Pulled By: gaearon

fbshipit-source-id: c1fee2b6ba0113a04d6e93c2c7e5d9b2241f14ee
This commit is contained in:
Dan Abramov 2018-03-19 04:49:30 -07:00 committed by Facebook Github Bot
parent 92d6fee5c8
commit bbd461a8c7

View File

@ -214,6 +214,6 @@ readComponentsList()
console.log(`${chalk.gray(`Compile time`)}: ${timeTaken}s\n`);
})
.catch(e => {
console.error(e.natickStack || e.stack);
console.error(e.nativeStack || e.stack);
process.exit(1);
});