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
If I pass a path instead of a module name to ensure_import_from then it frequently fails to find the right location.
ensure_import_from
We should be able to use absolute path and relativizing to construct the right relative path to ensure an import from within my repo.
Ex.
`foo` as $mod where { $mod <: ensure_import_from(`'./utils/foo') }
If I run this on apps/my.js it should insert the import as ../utils/foo.
apps/my.js
../utils/foo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I pass a path instead of a module name to
ensure_import_from
then it frequently fails to find the right location.We should be able to use absolute path and relativizing to construct the right relative path to ensure an import from within my repo.
Ex.
If I run this on
apps/my.js
it should insert the import as../utils/foo
.The text was updated successfully, but these errors were encountered: