Pauan
Pauan
@Losses Sorry, I'm not a part of the Rust Wasm team anymore, so I don't have permission to merge this. Personally I use Rollup for my Rust projects, I use...
We don't use `require` anywhere, and I can't reproduce that error. It sounds like something is going wrong with your setup. Could you please share your code? Either in a...
I'm fine with exporting it, but I think it would be better suited to a different crate, since it's such a generic Future utility.
Why are you marking the packages as `external`? It's normal to bundle npm dependencies with your app, `external` is for advanced use-cases.
amCharts should work with `peerDependencies`, so we'll need more details on your setup. P.S. Even if you use `peerDependencies`, the final application will still be bundling amCharts, so it doesn't...
I don't like `import { url } from "js:context";` Consider this code: ``` // foo.js import { url } from "js:context"; ``` ``` // bar.js import { url } from...
@domenic I thought about it further, and you are correct. Even with Node, `import { foo } from "foo"` can have different behavior depending on where the importing module is...
Aside from making a network request, is there any other way to automatically know if dev mode should be enabled or not? If not... then I agree with @iamalwaysuncomfortable that...