1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/cli/tools
Trevor Manz 48bb3b2b0f
feat(unstable): Await return from Jupyter.display (#20807)
Allows `Jupyter.display` to return a promise.

Example:

```javascript
class WikiPage {
    constructor(public name) {}
    async [Symbol.for("Jupyter.display")]() {
        let response = await fetch("https://en.wikipedia.org/wiki/" + this.name);
        return { "text/html": await response.text() }
    }
}

new WikiPage("Deno_(software)")
```
2023-10-06 21:26:11 +00:00
..
bench chore: update to Rust 1.73 (#20781) 2023-10-05 14:49:09 -04:00
coverage chore: update to Rust 1.73 (#20781) 2023-10-05 14:49:09 -04:00
init fix(init): skip existing files instead of erroring (#20434) 2023-09-12 12:55:26 +02:00
jupyter feat(unstable): Await return from Jupyter.display (#20807) 2023-10-06 21:26:11 +00:00
repl feat(jupyter): support Deno.test() (#20778) 2023-10-05 21:45:11 +01:00
test feat(jupyter): support Deno.test() (#20778) 2023-10-05 21:45:11 +01:00
vendor refactor(npm): make NpmCache, CliNpmRegistryApi, and NpmResolution internal to npm::managed (#20764) 2023-10-02 17:53:55 -04:00
bundle.rs refactor: use "deno_config" crate (#20260) 2023-08-24 11:21:34 +02:00
check.rs refactor(npm): break up NpmModuleLoader and move more methods into the managed CliNpmResolver (#20777) 2023-10-03 19:05:06 -04:00
compile.rs feat(compile): Add --no-terminal to compile command (#17991) 2023-07-28 18:46:26 +03:00
doc.rs Reland "fix(cli): don't store blob and data urls in the module cache" (#18581) 2023-07-02 00:52:30 +02:00
fmt.rs fix: empty include in config file excludes all (#20404) 2023-09-08 15:04:45 +01:00
info.rs refactor(npm): make NpmCache, CliNpmRegistryApi, and NpmResolution internal to npm::managed (#20764) 2023-10-02 17:53:55 -04:00
installer.rs refactor: use "deno_config" crate (#20260) 2023-08-24 11:21:34 +02:00
lint.rs fix(lsp): include JSON modules in local import completions (#20536) 2023-09-17 07:50:30 +01:00
mod.rs feat: Add "deno jupyter" subcommand (#20337) 2023-09-16 02:42:09 +02:00
run.rs refactor(npm): create cli::npm::managed module (#20740) 2023-09-30 12:06:38 -04:00
task.rs refactor(npm): break up NpmModuleLoader and move more methods into the managed CliNpmResolver (#20777) 2023-10-03 19:05:06 -04:00
upgrade.rs fix(upgrade): use tar.exe to extract on Windows (#20711) 2023-09-27 17:57:58 -04:00