You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On older node.js versions a manual process.exit() used to help. That stopped working on node.js 17 but node --wasm-dynamic-tiering should work. Not sure if that feature was already released in a stable node.js version though.
If
solc
is imported into any node script, it causes that script to delay for a few seconds after finishing.I have created a small repository to replicate this issue:
https://github.com/chase-manning/solc-bug-reproduce
Details on how to replicate are in the readme for that repo.
But in short, this script:
when run with, for example,
node index.js
will lag for about 5 seconds afterScript finished running
is logged.But this script:
Will stop running immediately after the line is logged.
This issue cannot be replicated by importing any other package, and happens just with
solc
.The text was updated successfully, but these errors were encountered: