Luca Casonato
Luca Casonato
Previously, if a specifier was imported more than once, with conflicting assertions, we'd only really consider the final import. This is wrong: conflicting assertions are an error in-themselves already. I...
Previously module source was represented as `String`. This does not work for non-textual formats like WASM. As such, module source is now represented as `[u8]`. In JS, the module source...
To unblock https://github.com/denoland/deno/issues/2552, `deno_graph` needs to be able to represent WASM modules in a module graph. To do this, we need to parse out the [`import`](https://webassembly.github.io/spec/core/syntax/modules.html#syntax-import) sections in a module,...
It would be great if deno_lint had support for plugins that can add rules. Here are _my thoughts_: **Constraints**: - Plugins should be written in Rust and use the same...
Roadmap
### Stage 0 - [x] Usability improvements (#33 and #34) - [x] Add integration tests (#43) ### Stage 1 - [ ] Track download counts (#57) - [ ] Display...
Successor to #56 ## Problem 1. The search results are not biased by star count. Some examples: - term: _discord_: the highest star count module is only on place 6....
Being able to view the response from `https://api.deno.land/modules` without having to put it through a formatter would be nice.
We should automatically moderate the names of modules people are uploading. I think we can start with these three steps (ordered by priority): 1. Add a list of reserved module...
Modules should get a optional `notice` field that can only be set manually by us. The type of this field should be string or undefined, and should not be changeable...
### Goal We want to have a graph of module download counts like crates.io has. This means that we should have a list of the download counts per module (or...