Skip to content

Commit 97aed63

Browse files
authored
Update default branch name (#236)
* Update default branch name * Rename master to main * Fix lerna config
1 parent 193fc00 commit 97aed63

File tree

35 files changed

+38
-39
lines changed

35 files changed

+38
-39
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,5 +344,5 @@ jobs:
344344
jlpm run lerna exec --concurrency 4 -- "touch yarn.lock"
345345
# Needed to generate the _version.py files
346346
jlpm run lerna exec --concurrency 4 -- "pip install -e ."
347-
# Check links as last step as new tutorial may set links not yet valid (like file not yet in master)
347+
# Check links as last step as new tutorial may set links not yet valid (like file not yet in main)
348348
jlpm run lerna exec --concurrency 4 -- "pytest --check-links"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# JupyterLab Extensions by Examples
22

33
[![Github Actions Status](https://github.com/jupyterlab/extension-examples/workflows/CI/badge.svg)](https://github.com/jupyterlab/extension-examples/actions?query=workflow%3ACI)
4-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab/extension-examples/master?urlpath=lab)
4+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab/extension-examples/main?urlpath=lab)
55

66
1. [Goal](#tldr)
77
1. [Develop by Examples](#develop-by-examples)
@@ -296,7 +296,7 @@ conda env create && \
296296
conda activate jupyterlab-extension-examples
297297
```
298298

299-
> The previous command will use the [environment.yml](https://github.com/jupyterlab/extension-examples/blob/master/environment.yml) file as requirements for the environment.
299+
> The previous command will use the [environment.yml](https://github.com/jupyterlab/extension-examples/blob/main/environment.yml) file as requirements for the environment.
300300
301301
## Develop and Use the Examples
302302

codemirror-extension/ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This folder contains the integration tests of the extension.
44

55
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
6-
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
6+
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
77

88
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
99

command-palette/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
One major concept of the Lumino library on which JupyterLab is built is
88
the notion of _Commands_ as explained in the
9-
[commands example](https://github.com/jupyterlab/extension-examples/blob/master/commands/README.md).
9+
[commands example](https://github.com/jupyterlab/extension-examples/blob/main/commands/README.md).
1010

1111
Commands can be used from the command palette.
1212

command-palette/ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This folder contains the integration tests of the extension.
44

55
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
6-
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
6+
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
77

88
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
99

commands/ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This folder contains the integration tests of the extension.
44

55
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
6-
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
6+
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
77

88
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
99

completer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ return {
9696
9797
## Aggregating connector responses
9898
99-
[_JupyterLab_'s `CompletionManager`](https://github.com/jupyterlab/jupyterlab/blob/master/packages/completer/src/manager.ts) fetches and merges completion responses from `KernelConnector` and `ContextConnector` (https://github.com/jupyterlab/jupyterlab/blob/b279092d88de650ea36460689257e1b8e8a418bf/packages/completer-extension/src/index.ts#L29).
99+
[_JupyterLab_'s `CompletionManager`](https://github.com/jupyterlab/jupyterlab/blob/main/packages/completer/src/manager.ts) fetches and merges completion responses from `KernelConnector` and `ContextConnector` (https://github.com/jupyterlab/jupyterlab/blob/b279092d88de650ea36460689257e1b8e8a418bf/packages/completer-extension/src/index.ts#L29).
100100
We add our new completer provider to it:
101101
102102
```ts

completer/ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This folder contains the integration tests of the extension.
44

55
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
6-
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
6+
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
77

88
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
99

contentheader/ui-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This folder contains the integration tests of the extension.
44

55
They are defined using [Playwright](https://playwright.dev/docs/intro) test runner
6-
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) helper.
6+
and [Galata](https://github.com/jupyterlab/jupyterlab/tree/main/galata) helper.
77

88
The Playwright configuration is defined in [playwright.config.js](./playwright.config.js).
99

context-menu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This is a basic example to show how to add a new entry to an existent context me
88

99
In JupyterLab plugins can expose context menus to offer an easy way to execute commands and perform actions. In this example, you will learn how to add a new entry to the file browser context menu to be displayed on files with extension `.example`.
1010

11-
> It is strongly recommended to read [commands](https://github.com/jupyterlab/extension-examples/tree/master/commands) example before diving into this one.
11+
> It is strongly recommended to read [commands](https://github.com/jupyterlab/extension-examples/tree/main/commands) example before diving into this one.
1212
1313
To implement this example you need to install the `@jupyterlab/filebrowser`, where you can find the interface `IFileBrowserFactory` necessary to require the file browser instance of JupyterLab.
1414

0 commit comments

Comments
 (0)