Skip to content

Commit 4f15b8e

Browse files
committed
Run embedme
1 parent f2b7220 commit 4f15b8e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

basics/hello-world/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ package is declared in the file `package.json`:
9393
```json5
9494
// package.json#L46-L48
9595

96-
"watch:src": "tsc -w"
97-
},
9896
"dependencies": {
97+
"@jupyterlab/application": "^3.0.0-rc.15"
98+
},
9999
```
100100

101101
With this basic import setup, you can move on to construct a new instance

main-menu/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ After the execution of that command, `package.json` should list them in the
8787
```json5
8888
// package.json#L46-L50
8989

90-
"watch:src": "tsc -w"
91-
},
9290
"dependencies": {
9391
"@jupyterlab/application": "^3.0.0-rc.15",
9492
"@jupyterlab/mainmenu": "^3.0.0-rc.15",
93+
"@lumino/widgets": "^1.16.1"
94+
},
9595
```
9696

9797
With this extension installed, a new menu _Main Menu Example_ should be present. And when

settings/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,11 @@ the `package.json` file in the `jupyterlab` section (here `schema`):
111111
```json5
112112
// package.json#L70-L74
113113

114-
"style/*.css"
115-
],
116114
"jupyterlab": {
115+
"extension": true,
116+
"schemaDir": "schema",
117+
"outputDir": "jupyterlab_examples_settings/labextension"
118+
}
117119
```
118120
<!-- prettier-ignore-end -->
119121

0 commit comments

Comments
 (0)