@jupyterlab/lsp
Advanced tools
Comparing version 4.1.3 to 4.2.0-alpha.0
@@ -35,3 +35,3 @@ // Copyright (c) Jupyter Development Team. | ||
const codeEditor = editor.getEditor(); | ||
if (codeEditor.isDisposed) { | ||
if (!codeEditor || codeEditor.isDisposed) { | ||
return; | ||
@@ -38,0 +38,0 @@ } |
{ | ||
"name": "@jupyterlab/lsp", | ||
"version": "4.1.3", | ||
"version": "4.2.0-alpha.0", | ||
"description": "", | ||
@@ -44,9 +44,9 @@ "homepage": "https://github.com/jupyterlab/jupyterlab", | ||
"dependencies": { | ||
"@jupyterlab/apputils": "^4.2.3", | ||
"@jupyterlab/codeeditor": "^4.1.3", | ||
"@jupyterlab/codemirror": "^4.1.3", | ||
"@jupyterlab/coreutils": "^6.1.3", | ||
"@jupyterlab/docregistry": "^4.1.3", | ||
"@jupyterlab/services": "^7.1.3", | ||
"@jupyterlab/translation": "^4.1.3", | ||
"@jupyterlab/apputils": "^4.3.0-alpha.0", | ||
"@jupyterlab/codeeditor": "^4.2.0-alpha.0", | ||
"@jupyterlab/codemirror": "^4.2.0-alpha.0", | ||
"@jupyterlab/coreutils": "^6.2.0-alpha.0", | ||
"@jupyterlab/docregistry": "^4.2.0-alpha.0", | ||
"@jupyterlab/services": "^7.2.0-alpha.0", | ||
"@jupyterlab/translation": "^4.2.0-alpha.0", | ||
"@lumino/coreutils": "^2.1.2", | ||
@@ -62,3 +62,3 @@ "@lumino/disposable": "^2.1.2", | ||
"devDependencies": { | ||
"@jupyterlab/testing": "^4.1.3", | ||
"@jupyterlab/testing": "^4.2.0-alpha.0", | ||
"@types/jest": "^29.2.0", | ||
@@ -65,0 +65,0 @@ "@types/lodash.mergewith": "^4.6.1", |
@@ -54,4 +54,4 @@ // Copyright (c) Jupyter Development Team. | ||
private _injectExtensions(editor: Document.IEditor): void { | ||
const codeEditor = editor.getEditor()!; | ||
if (codeEditor.isDisposed) { | ||
const codeEditor = editor.getEditor(); | ||
if (!codeEditor || codeEditor.isDisposed) { | ||
return; | ||
@@ -58,0 +58,0 @@ } |
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
510101
1