-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
bug: ModuleSpecifier parsing on Windows #3355
Comments
Finally. I got this problem in #3346. I am curious why CI failed under Windows. I spent a lot of time exploring the problem. |
There is already logic to deal with this case: Lines 172 to 190 in b9e5e4c
Can you figure out why it is not working? |
If something goes wrong it is here #L143. I am not able to fix it reliably, as I don't have access to Windows running machine. On Unix/Linux OS path encoding works fine. What do you think ? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
It seems there are still problems with
ModuleSpecifier
parsing on Windows.In #3344 I encountered problem on Windows CI where this path:
was parsed as module specifier having
c:
scheme instead offile://
and I had to manually addfile://
prefix doing dynamic import.The text was updated successfully, but these errors were encountered: