Skip to content

Commit f8fe306

Browse files
committed
Merge with anywidget
2 parents 4096595 + 20886ef commit f8fe306

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.circleci/config.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,13 @@ jobs:
436436
command: |
437437
eval "$(conda shell.bash hook)"
438438
conda activate env
439-
mv packages/python/plotly/bundle.js ../../../../output
439+
cd packages/javascript/jupyterlab-plotly
440+
npm pack
441+
mv jupyterlab-plotly*.tgz ../../../output
442+
cd ../../python/plotly/js
443+
npm install
444+
npm run build
445+
mv ../bundle.js ../../../../output
440446
441447
- run:
442448
name: Zip output
@@ -483,7 +489,12 @@ jobs:
483489
pip install -r requirements.txt
484490
if [ "${CIRCLE_BRANCH}" != "doc-prod" ]; then
485491
pip uninstall -y plotly
486-
pip install -e ../packages/python/plotly
492+
cd ../packages/python/plotly
493+
pip install -e .
494+
cd js
495+
npm install
496+
npm run build
497+
cd ../../../../doc
487498
fi
488499
cd ..
489500
- run:

0 commit comments

Comments
 (0)