From 51d588649dcb5e90be2f5287bf82218bad28e31c Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Thu, 12 Sep 2024 14:36:25 +0200 Subject: [PATCH] labextension in develop mode in dev install --- scripts/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index c6e48d2..7d970dc 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -12,11 +12,14 @@ if [ -z "${EXTENSION}" ]; then jlpm build # install the collaborative chat extension pip install -e python/jupyterlab-collaborative-chat[test] + jupyter labextension develop --overwrite python/jupyterlab-collaborative-chat # install websocket chat extension pip install -e python/jupyterlab-ws-chat[test] + jupyter labextension develop --overwrite python/jupyterlab-ws-chat else PACKAGE="jupyterlab-${EXTENSION}-chat" jlpm build:${EXTENSION} pip install -e python/${PACKAGE}[test] + jupyter labextension develop --overwrite python/${PACKAGE} fi