Skip to content

Commit 8125308

Browse files
authored
Merge pull request #862 from krassowski/change-package-org
Change NPM namespace to @jupyter-lsp
2 parents 6c536c7 + 1769756 commit 8125308

File tree

38 files changed

+134
-138
lines changed

38 files changed

+134
-138
lines changed

.github/workflows/job.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ jobs:
457457
- name: Install the server package
458458
run: cd dist && python -m pip install -vv jupyter_lsp*.whl
459459
- name: install the source extension
460-
run: cd dist && jupyter labextension install krassowski-jupyterlab-lsp-*.tgz --log-level DEBUG
460+
run: cd dist && jupyter labextension install jupyter-lsp-jupyterlab-lsp-*.tgz --log-level DEBUG
461461
- name: Validate the install
462462
run: |
463463
set -eux

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Changelog
22

3-
### `@krassowski/jupyterlab-lsp 4.0.0` (not-yet-released)
3+
### `@jupyter-lsp/jupyterlab-lsp 4.0.0-alpha.0` (not-yet-released)
44

55
- features:
66
- implement jump target selector and jump to references ([#739])
@@ -11,6 +11,7 @@
1111
- fix `undefined` being inserted for path-like completion items with no `insertText` ([#833])
1212
- reduce signature flickering when typing and hover flicker when moving mouse ([#836])
1313
- refactoring:
14+
- changed NPM packages namespace from `@krassowski` to `@jupyter-lsp` ([#862])
1415
- move client capabilities to features ([#738])
1516
- documentation:
1617
- add missing `--channel` to conda instruction for texlab ([#789], thanks @justin-f-perez)

atest/05_Features/Signature.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Force Tags feature:signature
99

1010

1111
*** Variables ***
12-
${SIGNATURE PLUGIN ID} @krassowski/jupyterlab-lsp:signature
12+
${SIGNATURE PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:signature
1313
${SIGNATURE_BOX} css:.lsp-signature-help
1414
${SIGNATURE_HIGHLIGHTED_ARG} css:.lsp-signature-help mark
1515
${SIGNATURE_DETAILS_CSS} .lsp-signature-help details

atest/Keywords.resource

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Initialize User Settings
9090

9191
Reset Plugin Settings
9292
[Arguments] ${package}=jupyterlab-lsp ${plugin}=plugin
93-
${LSP PLUGIN SETTINGS FILE} = Set Variable @krassowski${/}${package}${/}${plugin}.jupyterlab-settings
93+
${LSP PLUGIN SETTINGS FILE} = Set Variable @jupyter-lsp${/}${package}${/}${plugin}.jupyterlab-settings
9494
Create File ${SETTINGS DIR}${/}${LSP PLUGIN SETTINGS FILE} {}
9595

9696
Tear Down Everything

atest/Variables.resource

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ ${CM CURSOR} css:.CodeMirror-cursor
5252
${CM CURSORS}
5353
... css:.jp-MainAreaWidget:not(.lm-mod-hidden) .CodeMirror-cursors:not([style='visibility: hidden'])
5454
# settings
55-
${LSP PLUGIN ID} @krassowski/jupyterlab-lsp:plugin
56-
${COMPLETION PLUGIN ID} @krassowski/jupyterlab-lsp:completion
57-
${HIGHLIGHTS PLUGIN ID} @krassowski/jupyterlab-lsp:highlights
58-
${JUMP PLUGIN ID} @krassowski/jupyterlab-lsp:jump_to
59-
${DIAGNOSTICS PLUGIN ID} @krassowski/jupyterlab-lsp:diagnostics
55+
${LSP PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:plugin
56+
${COMPLETION PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:completion
57+
${HIGHLIGHTS PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:highlights
58+
${JUMP PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:jump_to
59+
${DIAGNOSTICS PLUGIN ID} @jupyter-lsp/jupyterlab-lsp:diagnostics
6060
${CSS USER SETTINGS} .jp-SettingsRawEditor-user
6161
${JLAB XP CLOSE SETTINGS}
6262
... ${JLAB XP DOCK TAB}\[contains(., 'Settings')]/*[contains(@class, 'm-TabBar-tabCloseIcon')]

docs/Installation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
" 'chktex' \\\n",
215215
" 'jupyter-lsp={JUPYTER_LSP_VERSION}' \\\n",
216216
" && jupyter labextension install --no-build \\\n",
217-
" '@krassowski/jupyterlab-lsp@{JUPYTERLAB_LSP_VERSION}' \\\n",
217+
" '@jupyter-lsp/jupyterlab-lsp@{JUPYTERLAB_LSP_VERSION}' \\\n",
218218
" && jupyter lab build --dev-build=False --minimize=True \\\n",
219219
" && conda clean --all -f -y \\\n",
220220
" && rm -rf \\\n",

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@
4545
"bootstrap": "jlpm --no-optional --prefer-offline && lerna bootstrap && jlpm clean && jlpm build && jlpm lint",
4646
"build": "jlpm build:schema && jlpm build:meta && jlpm build:ws && jlpm build:labextension",
4747
"build:schema": "lerna run build:schema --stream",
48-
"build:meta": "lerna run build --stream --scope @krassowski/jupyterlab-lsp-metapackage",
48+
"build:meta": "lerna run build --stream --scope @jupyter-lsp/jupyterlab-lsp-metapackage",
4949
"build:labextension": "lerna run build:labextension --stream",
50-
"build:completion-theme": "lerna run build --stream --scope @krassowski/completion-theme",
51-
"build:theme-vscode": "lerna run build --stream --scope @krassowski/theme-vscode",
52-
"build:theme-material": "lerna run build --stream --scope @krassowski/theme-material",
53-
"build:jupyterlab-lsp": "lerna run build --stream --scope @krassowski/jupyterlab-lsp",
50+
"build:completion-theme": "lerna run build --stream --scope @jupyter-lsp/completion-theme",
51+
"build:theme-vscode": "lerna run build --stream --scope @jupyter-lsp/theme-vscode",
52+
"build:theme-material": "lerna run build --stream --scope @jupyter-lsp/theme-material",
53+
"build:jupyterlab-lsp": "lerna run build --stream --scope @jupyter-lsp/jupyterlab-lsp",
5454
"build:ws": "lerna run build --stream --scope lsp-ws-connection",
55-
"build:jump": "lerna run build --stream --scope @krassowski/code-jumpers",
55+
"build:jump": "lerna run build --stream --scope @jupyter-lsp/code-jumpers",
5656
"watch": "lerna run --parallel watch",
5757
"bundle": "lerna run --parallel bundle",
5858
"clean": "lerna run --parallel clean",

packages/_example-extractor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@krassowski/jupyterlab-lsp-example-extractor",
3-
"description": "Example extractor package from @krassowski/jupyterlab-lsp",
2+
"name": "@jupyter-lsp/jupyterlab-lsp-example-extractor",
3+
"description": "Example extractor package from @jupyter-lsp/jupyterlab-lsp",
44
"version": "0.0.0",
55
"private": true,
66
"main": "lib/index.js",
@@ -10,7 +10,7 @@
1010
"lib/**/*.{js,ts}"
1111
],
1212
"dependencies": {
13-
"@krassowski/jupyterlab-lsp": "^3.6"
13+
"@jupyter-lsp/jupyterlab-lsp": "^4.0.0-alpha.0"
1414
},
1515
"devDependencies": {
1616
"@babel/preset-env": "^7.4.3",

packages/_example-extractor/src/api.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IExtractedCode } from '@krassowski/jupyterlab-lsp';
1+
import { IExtractedCode } from '@jupyter-lsp/jupyterlab-lsp';
22
import { expect } from 'chai';
33

44
import { extractor } from '.';

packages/_example-extractor/src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1+
import {
2+
ILSPCodeExtractorsManager,
3+
RegExpForeignCodeExtractor
4+
} from '@jupyter-lsp/jupyterlab-lsp';
15
import {
26
JupyterFrontEnd,
37
JupyterFrontEndPlugin
48
} from '@jupyterlab/application';
5-
import {
6-
ILSPCodeExtractorsManager,
7-
RegExpForeignCodeExtractor
8-
} from '@krassowski/jupyterlab-lsp';
99

10-
const NS = '@krassowski/jupyterlab-lsp-example-extractor';
10+
const NS = '@jupyter-lsp/jupyterlab-lsp-example-extractor';
1111

1212
export const extractor = new RegExpForeignCodeExtractor({
1313
language: 'foo',

0 commit comments

Comments
 (0)