File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ node_modules/
6
6
.ipynb_checkpoints
7
7
* .tsbuildinfo
8
8
* .lock
9
+ __pycache__
10
+
9
11
# Ensure embedme does not run ont node_modules README.md files.
10
12
** /node_modules /** /README.md
11
13
Original file line number Diff line number Diff line change @@ -232,12 +232,17 @@ conda env create && \
232
232
233
233
``` bash
234
234
jlpm
235
- jlpm build-ext
235
+ jlpm install-py
236
236
jlpm install-ext
237
- jlpm build-jlab
238
237
jupyter lab
239
238
```
240
239
240
+ To rebuild all the extensions:
241
+
242
+ ``` bash
243
+ jlpm build-ext
244
+ ```
245
+
241
246
To clean the lib folders:
242
247
243
248
``` bash
Original file line number Diff line number Diff line change 49
49
"@jupyterlab/translation" : " ^3.0.0-rc.15" ,
50
50
"@lumino/algorithm" : " ^1.3.3" ,
51
51
"@lumino/coreutils" : " ^1.5.3" ,
52
- "@lumino/datagrid" : " ^0.5.2 " ,
52
+ "@lumino/datagrid" : " ^0.14.1 " ,
53
53
"@lumino/disposable" : " ^1.4.3"
54
54
},
55
55
"devDependencies" : {
Original file line number Diff line number Diff line change 7
7
"build-ext" : " lerna run build:all" ,
8
8
"clean-ext" : " lerna run clean" ,
9
9
"embedme" : " embedme \" [!n]*/**/README.md\" " ,
10
+ "install-py" : " lerna exec -- python -m pip install -e ." ,
10
11
"install-ext" : " lerna run install:extension" ,
11
12
"lint" : " jlpm && jlpm run prettier" ,
12
13
"lint:check" : " jlpm run embedme --verify && jlpm run prettier:check" ,
You can’t perform that action at this time.
0 commit comments