Skip to content

Commit e6592a7

Browse files
committed
Update instructions to install all extensions at once
1 parent 966044b commit e6592a7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ node_modules/
66
.ipynb_checkpoints
77
*.tsbuildinfo
88
*.lock
9+
__pycache__
10+
911
# Ensure embedme does not run ont node_modules README.md files.
1012
**/node_modules/**/README.md
1113

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,17 @@ conda env create && \
232232

233233
```bash
234234
jlpm
235-
jlpm build-ext
235+
jlpm install-py
236236
jlpm install-ext
237-
jlpm build-jlab
238237
jupyter lab
239238
```
240239

240+
To rebuild all the extensions:
241+
242+
```bash
243+
jlpm build-ext
244+
```
245+
241246
To clean the lib folders:
242247

243248
```bash

basics/datagrid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@jupyterlab/translation": "^3.0.0-rc.15",
5050
"@lumino/algorithm": "^1.3.3",
5151
"@lumino/coreutils": "^1.5.3",
52-
"@lumino/datagrid": "^0.5.2",
52+
"@lumino/datagrid": "^0.14.1",
5353
"@lumino/disposable": "^1.4.3"
5454
},
5555
"devDependencies": {

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"build-ext": "lerna run build:all",
88
"clean-ext": "lerna run clean",
99
"embedme": "embedme \"[!n]*/**/README.md\"",
10+
"install-py": "lerna exec -- python -m pip install -e .",
1011
"install-ext": "lerna run install:extension",
1112
"lint": "jlpm && jlpm run prettier",
1213
"lint:check": "jlpm run embedme --verify && jlpm run prettier:check",

0 commit comments

Comments
 (0)