Skip to content

Commit 78c9410

Browse files
committed
Apply upgrade script
1 parent fccf4a4 commit 78c9410

File tree

43 files changed

+153
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+153
-154
lines changed

command-palette/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"watch:src": "tsc -w"
4949
},
5050
"dependencies": {
51-
"@jupyterlab/application": "^3.0.10"
51+
"@jupyterlab/application": "^3.0.11"
5252
},
5353
"devDependencies": {
5454
"@jupyterlab/builder": "^3.0.0",

command-palette/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The name of the project
1212
name = "jupyterlab_examples_command_palette"
1313

14-
lab_path = (HERE / name / "labextension")
14+
lab_path = (HERE / name.replace("-", "_") / "labextension")
1515

1616
# Representative files that should exist after a successful build
1717
ensured_targets = [

commands/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"watch:src": "tsc -w"
4949
},
5050
"dependencies": {
51-
"@jupyterlab/application": "^3.0.10"
51+
"@jupyterlab/application": "^3.0.11"
5252
},
5353
"devDependencies": {
5454
"@jupyterlab/builder": "^3.0.0",

commands/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The name of the project
1212
name = "jupyterlab_examples_commands"
1313

14-
lab_path = (HERE / name / "labextension")
14+
lab_path = (HERE / name.replace("-", "_") / "labextension")
1515

1616
# Representative files that should exist after a successful build
1717
ensured_targets = [

context-menu/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
"watch:src": "tsc -w"
4949
},
5050
"dependencies": {
51-
"@jupyterlab/application": "^3.0.10",
52-
"@jupyterlab/apputils": "^3.0.8",
53-
"@jupyterlab/filebrowser": "^3.0.10",
51+
"@jupyterlab/application": "^3.0.11",
52+
"@jupyterlab/apputils": "^3.0.9",
53+
"@jupyterlab/filebrowser": "^3.0.11",
5454
"@jupyterlab/ui-components": "^3.0.7"
5555
},
5656
"devDependencies": {

context-menu/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The name of the project
1212
name = "jupyterlab_examples_context_menu"
1313

14-
lab_path = (HERE / name / "labextension")
14+
lab_path = (HERE / name.replace("-", "_") / "labextension")
1515

1616
# Representative files that should exist after a successful build
1717
ensured_targets = [

custom-log-console/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@
4848
"watch:src": "tsc -w"
4949
},
5050
"dependencies": {
51-
"@jupyterlab/application": "^3.0.10",
52-
"@jupyterlab/apputils": "^3.0.8",
51+
"@jupyterlab/application": "^3.0.11",
52+
"@jupyterlab/apputils": "^3.0.9",
5353
"@jupyterlab/coreutils": "^5.0.6",
54-
"@jupyterlab/logconsole": "^3.0.9",
55-
"@jupyterlab/mainmenu": "^3.0.8",
56-
"@jupyterlab/nbformat": "^3.0.5",
57-
"@jupyterlab/rendermime": "^3.0.9",
54+
"@jupyterlab/logconsole": "^3.0.10",
55+
"@jupyterlab/mainmenu": "^3.0.9",
56+
"@jupyterlab/nbformat": "^3.0.6",
57+
"@jupyterlab/rendermime": "^3.0.10",
5858
"@jupyterlab/ui-components": "^3.0.7",
5959
"@lumino/coreutils": "^1.5.3",
6060
"@lumino/widgets": "^1.16.1"

custom-log-console/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The name of the project
1212
name = "jupyterlab_examples_custom_log_console"
1313

14-
lab_path = (HERE / name / "labextension")
14+
lab_path = (HERE / name.replace("-", "_") / "labextension")
1515

1616
# Representative files that should exist after a successful build
1717
ensured_targets = [

datagrid/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
"watch:src": "tsc -w"
4949
},
5050
"dependencies": {
51-
"@jupyterlab/application": "^3.0.10",
52-
"@jupyterlab/mainmenu": "^3.0.8",
53-
"@jupyterlab/translation": "^3.0.8",
51+
"@jupyterlab/application": "^3.0.11",
52+
"@jupyterlab/mainmenu": "^3.0.9",
53+
"@jupyterlab/translation": "^3.0.9",
5454
"@lumino/algorithm": "^1.3.3",
5555
"@lumino/coreutils": "^1.5.3",
5656
"@lumino/datagrid": "^0.14.1",

datagrid/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# The name of the project
1212
name = "jupyterlab_examples_datagrid"
1313

14-
lab_path = (HERE / name / "labextension")
14+
lab_path = (HERE / name.replace("-", "_") / "labextension")
1515

1616
# Representative files that should exist after a successful build
1717
ensured_targets = [

0 commit comments

Comments
 (0)