New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@jupyterlab/lsp

Package Overview
Dependencies
Maintainers
10
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jupyterlab/lsp - npm Package Compare versions

Comparing version 4.1.3 to 4.2.0-alpha.0

2

lib/adapters/editorAdapter.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc