We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
For example, if I have a JavaScript cell:
```js import {foo, bar} from "./foo.js"; ```
And then foo.js imports bar.js:
export const foo = "foo"; export {bar} from "./bar.js";
And bar.js:
export const bar = "bar";
Then foo.js is correctly identified as a file attachment, but bar.js is not.
Fixed in #40.
The text was updated successfully, but these errors were encountered:
Transitive imports are promoted as file attachments in #40. But transitive imports are not rewritten properly. for example: in a .md file:
.md
```js import {bar} from "./bar.js" ```
will get rewritten as
const {bar} = await import("/_file/bar.js");
but in bar.js this will not be rewritten
bar.js
import {foo} from "./foo.js"
Sorry, something went wrong.
cinxmo
No branches or pull requests
For example, if I have a JavaScript cell:
And then foo.js imports bar.js:
And bar.js:
Then foo.js is correctly identified as a file attachment, but bar.js is not.
Fixed in #40.
The text was updated successfully, but these errors were encountered: