Skip to content

Commit cf1efca

Browse files
authored
Bump to latest template version (jupyterlab#258)
* Bump to latest template version * Add empty yarn.lock to ui-tests folders * Fix embedme * Fix link
1 parent 36a6595 commit cf1efca

File tree

234 files changed

+5155
-4670
lines changed

Some content is hidden

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

234 files changed

+5155
-4670
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ node_modules/
55
*.egg-info/
66
.ipynb_checkpoints
77
*.tsbuildinfo
8-
*.lock
98
__pycache__
109
.yarn/
1110

@@ -18,3 +17,5 @@ labextension
1817
_version.py
1918

2019
.jupyter_ystore.db
20+
yarn.lock
21+
!**/ui-tests/yarn.lock

codemirror-extension/.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: v4.0.5
2+
_commit: v4.2.4
33
_src_path: gh:jupyterlab/extension-template
44
author_email: ''
55
author_name: Project Jupyter Contributors

codemirror-extension/.yarnrc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
enableImmutableInstalls: false
2-
31
nodeLinker: node-modules

codemirror-extension/jupyterlab_examples_codemirror_extension/__init__.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
from ._version import __version__
1+
try:
2+
from ._version import __version__
3+
except ImportError:
4+
# Fallback when using the package in dev mode without installing
5+
# in editable mode with pip. It is highly recommended to install
6+
# the package from a stable release or in editable mode: https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
7+
import warnings
8+
warnings.warn("Importing 'jupyterlab_examples_codemirror_extension' outside a proper installation.")
9+
__version__ = "dev"
210

311

412
def _jupyter_labextension_paths():

0 commit comments

Comments
 (0)