Skip to content

Commit d0e0334

Browse files
committed
Linting
1 parent cef1e99 commit d0e0334

File tree

11 files changed

+340
-361
lines changed

11 files changed

+340
-361
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ conda install sidecar
1818
```
1919

2020
If you use JupyterLab <=2:
21+
2122
```bash
2223
jupyter labextension install @jupyter-widgets/jupyterlab-manager
2324
jupyter labextension install @jupyter-widgets/jupyterlab-sidecar
@@ -62,6 +63,7 @@ jupyter labextension develop . --overwrite
6263
# Rebuild extension Typescript source after making changes
6364
jlpm run build
6465
```
66+
6567
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
6668

6769
```bash
@@ -71,7 +73,6 @@ jlpm run watch
7173
jupyter lab
7274
```
7375

74-
7576
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
7677

7778
By default, the jlpm run build command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:

docs/source/_static/helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var cache_require = window.require;
22

3-
window.addEventListener('load', function() {
3+
window.addEventListener('load', function () {
44
window.require = cache_require;
55
});

0 commit comments

Comments
 (0)