Skip to content

Commit e47a855

Browse files
committed
Update readmes
1 parent a1d681b commit e47a855

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

documents/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The shared model needs to be registered only if your file must be collaborative.
3636
> adding the following configuration in `package.json`.:
3737
3838
```json5
39-
// package.json#L108-L113
39+
// package.json#L109-L114
4040

4141
"sharedPackages": {
4242
"@jupyter/docprovider": {

hello-world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ called `@jupyterlab/application`. The dependency of your extension on this
157157
package is declared in the file `package.json`:
158158

159159
```json5
160-
// package.json#L54-L56
160+
// package.json#L55-L57
161161

162162
"dependencies": {
163163
"@jupyterlab/application": "^4.0.0"

main-menu/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,19 +142,20 @@ To achieve this, the `package.json` must include:
142142

143143
<!-- prettier-ignore-start -->
144144
```json5
145-
// package.json#L16-L20
145+
// package.json#L16-L21
146146

147147
"files": [
148148
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
149149
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
150+
"src/**/*.{ts,tsx}",
150151
"schema/*.json"
151152
],
152153
```
153154
<!-- prettier-ignore-end -->
154155

155156
<!-- prettier-ignore-start -->
156157
```json5
157-
// package.json#L94-L98
158+
// package.json#L95-L99
158159

159160
"jupyterlab": {
160161
"extension": true,

server-extension/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ user about that dependency by adding the `discovery` metadata to your `package.j
723723
file:
724724

725725
```json5
726-
// package.json#L97-L107
726+
// package.json#L98-L108
727727

728728
"jupyterlab": {
729729
"discovery": {
@@ -741,15 +741,15 @@ file:
741741
In this example, the extension requires a `server` extension:
742742
743743
```json5
744-
// package.json#L98-L98
744+
// package.json#L99-L99
745745

746746
"discovery": {
747747
```
748748
749749
And that server extension is available through `pip`:
750750
751751
```json5
752-
// package.json#L99-L101
752+
// package.json#L100-L102
753753

754754
"server": {
755755
"managers": [

settings/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ the `package.json` file in the `jupyterlab` section (here `schema`):
131131
132132
<!-- prettier-ignore-start -->
133133
```json5
134-
// package.json#L94-L98
134+
// package.json#L95-L99
135135

136136
"jupyterlab": {
137137
"extension": true,
@@ -144,11 +144,12 @@ the `package.json` file in the `jupyterlab` section (here `schema`):
144144
And you should not forget to add it to the files of the package:
145145
146146
```json5
147-
// package.json#L16-L20
147+
// package.json#L16-L21
148148

149149
"files": [
150150
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
151151
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
152+
"src/**/*.{ts,tsx}",
152153
"schema/*.json"
153154
],
154155
```

0 commit comments

Comments
 (0)