We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So, it looks like there was an unexpected interaction between the new process handling code and the denoifyImportExportStatement code.
process
denoifyImportExportStatement
I denoified some code and got this line of code:
import process from "node:node:process";
I think part of the issue is that the test cases are mocking denoifyImportExportStatement, so this type of error slipped through.
The text was updated successfully, but these errors were encountered:
feat: handle node builtings better
07e30ad
This change is designed to handle the node builtins more effectively, since they were moved to `node:xxx`; Fixes garronej#110
Successfully merging a pull request may close this issue.
So, it looks like there was an unexpected interaction between the new
process
handling code and thedenoifyImportExportStatement
code.I denoified some code and got this line of code:
I think part of the issue is that the test cases are mocking
denoifyImportExportStatement
, so this type of error slipped through.The text was updated successfully, but these errors were encountered: