diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-09-16 02:42:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-16 02:42:09 +0200 |
commit | bf0760411336ce5ebb1c103f766c8154af478414 (patch) | |
tree | f2a7f18e66c1b347a45effa869264793d83b5864 /cli/tools/repl/mod.rs | |
parent | 5a1505db67d0326bf37b765c8a566584b44a2c1a (diff) |
feat: Add "deno jupyter" subcommand (#20337)
This commit adds "deno jupyter" subcommand which
provides a Deno kernel for Jupyter notebooks.
The implementation is mostly based on Deno's REPL and
reuses large parts of it (though there's some clean up that
needs to happen in follow up PRs). Not all functionality of
Jupyter kernel is implemented and some message type
are still not implemented (eg. "inspect_request") but
the kernel is fully working and provides all the capatibilities
that the Deno REPL has; including TypeScript transpilation
and npm packages support.
Closes https://github.com/denoland/deno/issues/13016
---------
Co-authored-by: Adam Powers <apowers@ato.ms>
Co-authored-by: Kyle Kelley <rgbkrk@gmail.com>
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r-- | cli/tools/repl/mod.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index fb0891fa6..a1e741dfd 100644 --- a/cli/tools/repl/mod.rs +++ b/cli/tools/repl/mod.rs @@ -13,7 +13,7 @@ use deno_runtime::permissions::Permissions; use deno_runtime::permissions::PermissionsContainer; use rustyline::error::ReadlineError; -mod cdp; +pub(crate) mod cdp; mod channel; mod editor; mod session; @@ -24,8 +24,9 @@ use channel::RustylineSyncMessageHandler; use channel::RustylineSyncResponse; use editor::EditorHelper; use editor::ReplEditor; -use session::EvaluationOutput; -use session::ReplSession; +pub use session::EvaluationOutput; +pub use session::ReplSession; +pub use session::REPL_INTERNALS_NAME; #[allow(clippy::await_holding_refcell_ref)] async fn read_line_and_poll( |