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 the import URL of a module has a query string, e.g.
{ "imports": { "aleph": "https://deno.land/x/aleph@v0.3.0-alpha.1/mod.ts", "aleph/": "https://deno.land/x/aleph@v0.3.0-alpha.1/", "react": "https://esm.sh/react@17.0.1", - "react-dom": "https://esm.sh/react-dom@17.0.1" + "react-dom": "https://esm.sh/react-dom@17.0.1", + "twind": "https://esm.sh/twind?no-check" }, "scopes": {} }
…then the query string is included in the base filename of the module stored on-disk, like this:
.aleph/development/-/esm.sh/twind.js_no-check.js .aleph/development/-/esm.sh/twind.js_no-check.js.map .aleph/development/-/esm.sh/twind.js_no-check.meta.json
…but the resolver at
aleph.js/compiler/src/resolve.rs
Line 116 in 192885d
…when importing the module, expects a file at:
.aleph/development/-/esm.sh/twind_no-check.js
…and aleph dev produces the following error:
aleph dev
ERROR TypeError: Cannot resolve module "file:///Users/jcayzac/hello/.aleph/development/-/esm.sh/twind_no-check.js" from "file:///Users/jcayzac/hello/.aleph/development/app.f4f4f1634.js".
The text was updated successfully, but these errors were encountered:
@jcayzac thanks, i already rewritten the loader system that should fix this
Sorry, something went wrong.
No branches or pull requests
If the import URL of a module has a query string, e.g.
…then the query string is included in the base filename of the module stored on-disk, like this:
…but the resolver at
aleph.js/compiler/src/resolve.rs
Line 116 in 192885d
…when importing the module, expects a file at:
…and
aleph dev
produces the following error:The text was updated successfully, but these errors were encountered: