mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix(npm): ignore the unstable error in the lsp (#15727)
This commit is contained in:
parent
e1d7d7b0e3
commit
67713f4b93
1 changed files with 3 additions and 1 deletions
|
@ -226,7 +226,9 @@ impl ProcState {
|
|||
&dir,
|
||||
cli_options.reload_flag(),
|
||||
cli_options.cache_setting(),
|
||||
cli_options.unstable(),
|
||||
cli_options.unstable()
|
||||
// don't do the unstable error when in the lsp
|
||||
|| matches!(cli_options.sub_command(), DenoSubcommand::Lsp),
|
||||
)?;
|
||||
|
||||
Ok(ProcState(Arc::new(Inner {
|
||||
|
|
Loading…
Reference in a new issue