diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-29 19:12:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 19:12:04 +0000 |
commit | fb31ae73e40896c1d1dfdb26c265222f49907d32 (patch) | |
tree | f113a07ecf0dd54f7df38b5b3c1f7f481b581498 /cli/lsp/mod.rs | |
parent | a9aef0d017bd053d7f4014c363dbc5898ced1a2e (diff) |
feat(unstable): `deno add` subcommand (#22520)
This commit adds "deno add" subcommand that has a basic support for
adding "jsr:" packages to "deno.json" file.
This currently doesn't support "npm:" specifiers and specifying version
constraints.
Diffstat (limited to 'cli/lsp/mod.rs')
-rw-r--r-- | cli/lsp/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/lsp/mod.rs b/cli/lsp/mod.rs index f15d2a365..a2d085464 100644 --- a/cli/lsp/mod.rs +++ b/cli/lsp/mod.rs @@ -21,7 +21,7 @@ mod completions; mod config; mod diagnostics; mod documents; -mod jsr; +pub mod jsr; pub mod language_server; mod logging; mod lsp_custom; @@ -32,7 +32,7 @@ mod performance; mod refactor; mod registries; mod repl; -mod search; +pub mod search; mod semantic_tokens; mod testing; mod text; |