-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deno.transpileOnly gets stuck during transpile #7416
Comments
Hmmm... iIRC this will spin up the compiler isolate n times and there is complex promise resolution going on here with awaits inside awaits. Not that it is a good answer, but what if you created a pipeline as a workaround, where you fetched all the remote assets and then transpiled them all in one shot, therefore only spinning up the compiler once? |
I can check if this fixes it for this reproduction, but in the |
Well, we need to reactor it to use swc anyway and reactor the APIs as a whole. So it may not make sense to try to fix it ATM. |
I agree, we shouldn't be spinning up TSC for |
This has to wait until 1.5 though as it would mean |
This has to wait for #4752 to be honest. |
|
It seems to not be fixed by compiler refactor - can still reproduce on 1.5.2. |
Can not reproduce with |
This script reliably does not complete for me. It gets stuck in one of the
Deno.transpileOnly
calls. Decreasing the amount of remote files to 4 causes the script to complete sometimes.OS: Ubuntu 20.04
Deno: 1.3.3
The text was updated successfully, but these errors were encountered: