@quarto/jupyterlab-quarto 0.2.3 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
@@ -28,7 +28,7 @@ You can try an example of the extension in a notebook (though you can't actually
|
|
28
28
|
To install the extension, execute:
|
29
29
|
|
30
30
|
```bash
|
31
|
-
pip install
|
31
|
+
pip install jupyterlab-quarto
|
32
32
|
```
|
33
33
|
|
34
34
|
## Uninstall
|
@@ -36,7 +36,7 @@ pip install jupyterlab_quarto
|
|
36
36
|
To remove the extension, execute:
|
37
37
|
|
38
38
|
```bash
|
39
|
-
pip uninstall
|
39
|
+
pip uninstall jupyterlab-quarto
|
40
40
|
```
|
41
41
|
|
42
42
|
## Contributing
|
@@ -51,7 +51,7 @@ The `jlpm` command is JupyterLab's pinned version of
|
|
51
51
|
|
52
52
|
```bash
|
53
53
|
# Clone the repo to your local environment
|
54
|
-
# Change directory to the
|
54
|
+
# Change directory to the jupyterlab-quarto directory
|
55
55
|
# Install package in development mode
|
56
56
|
pip install -e "."
|
57
57
|
# Link your development version of the extension with JupyterLab
|
@@ -80,7 +80,7 @@ jupyter lab build --minimize=False
|
|
80
80
|
### Development uninstall
|
81
81
|
|
82
82
|
```bash
|
83
|
-
pip uninstall
|
83
|
+
pip uninstall jupyterlab-quarto
|
84
84
|
```
|
85
85
|
|
86
86
|
In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
|
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "0.2.
|
2
|
+
"version": "0.2.7",
|
3
3
|
"name": "@quarto/jupyterlab-quarto",
|
4
4
|
"description": "Jupyter extension to enable authoring of Quarto documents within Jupyterlab Notebooks.",
|
5
5
|
"keywords": [
|
@@ -37,7 +37,7 @@
|
|
37
37
|
"clean": "jlpm clean:lib",
|
38
38
|
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
39
39
|
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
40
|
-
"clean:labextension": "rimraf
|
40
|
+
"clean:labextension": "rimraf jupyterlab-quarto/labextension jupyterlab-quarto/_version.py",
|
41
41
|
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
42
42
|
"eslint": "jlpm eslint:check --fix",
|
43
43
|
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
@@ -112,7 +112,7 @@
|
|
112
112
|
},
|
113
113
|
"jupyterlab": {
|
114
114
|
"extension": true,
|
115
|
-
"outputDir": "
|
115
|
+
"outputDir": "jupyterlab-quarto/labextension",
|
116
116
|
"disabledExtensions": [
|
117
117
|
"jupyterlab-myst:plugin",
|
118
118
|
"jupyterlab-myst:legacyPlugin",
|
File without changes
|
File without changes
|